#936836 by swentel: Fixed critical issue Autocomplete term widget doesn't return any values - unknown key vid.
parent
90c1a34782
commit
8c89469d20
|
@ -91,8 +91,9 @@ function taxonomy_autocomplete($field_name, $tags_typed = '') {
|
|||
|
||||
// Part of the criteria for the query come from the field's own settings.
|
||||
$vids = array();
|
||||
$vocabularies = taxonomy_vocabulary_get_names();
|
||||
foreach ($field['settings']['allowed_values'] as $tree) {
|
||||
$vids[] = $tree['vid'];
|
||||
$vids[] = $vocabularies[$tree['vocabulary']]->vid;
|
||||
}
|
||||
|
||||
$query = db_select('taxonomy_term_data', 't');
|
||||
|
|
|
@ -466,7 +466,7 @@ class TaxonomyTermTestCase extends TaxonomyWebTestCase {
|
|||
$this->drupalGet('node/' . $node->nid);
|
||||
$this->assertText($term2->name, t('Term is displayed when viewing the node.'));
|
||||
|
||||
//Preview the node
|
||||
// Preview the node.
|
||||
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Preview'));
|
||||
$this->assertNoUniqueText($term2->name, t('Term is displayed when previewing the node.'));
|
||||
$this->drupalPost(NULL, NULL, t('Preview'));
|
||||
|
@ -530,6 +530,11 @@ class TaxonomyTermTestCase extends TaxonomyWebTestCase {
|
|||
$this->assertText($term_name, t('The term %name appears on the node page after one term %deleted was deleted', array('%name' => $term_name, '%deleted' => $term1->name)));
|
||||
}
|
||||
$this->assertNoText($term1->name, t('The deleted term %name does not appear on the node page.', array('%name' => $term1->name)));
|
||||
|
||||
// Test autocomplete on term 2.
|
||||
$input = substr($term2->name, 0, 3);
|
||||
$this->drupalGet('taxonomy/autocomplete/taxonomy_' . $this->vocabulary->machine_name . '/' . $input);
|
||||
$this->assertRaw('{"' . $term2->name . '":"' . $term2->name . '"}', t('Autocomplete returns term %term_name after typing the first 3 letters.', array('%term_name' => $term2->name)));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue