diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 677321c13cc328b3b69f2660f9d729ad1ec2982f..5de8aa538188f823eaff044c565bb0989bd1a6c2 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1216,8 +1216,7 @@ function taxonomy_field_widget(&$form, &$form_state, $field, $instance, $langcod $element += array( '#type' => 'textfield', '#default_value' => taxonomy_implode_tags($tags), - // @todo Path should include the object type as well. - '#autocomplete_path' => 'taxonomy/autocomplete/'. $field['field_name'] .'/'. $instance['bundle'], + '#autocomplete_path' => $instance['widget']['settings']['autocomplete_path'] . '/' . $field['field_name'], '#size' => $instance['widget']['settings']['size'], '#element_validate' => array('taxonomy_autocomplete_validate'), ); diff --git a/modules/taxonomy/taxonomy.pages.inc b/modules/taxonomy/taxonomy.pages.inc index f79dc97a35ba5d9b15ad40332104665d68b23c0d..83c9c987003c63d33b7a5c376f8b066123afdcfb 100644 --- a/modules/taxonomy/taxonomy.pages.inc +++ b/modules/taxonomy/taxonomy.pages.inc @@ -77,8 +77,7 @@ function taxonomy_term_feed($term) { /** * Helper function for autocompletion */ -function taxonomy_autocomplete($field_name, $bundle, $tags_typed = '') { - $instance = field_info_instance($field_name, $bundle); +function taxonomy_autocomplete($field_name, $tags_typed = '') { $field = field_info_field($field_name); // The user enters a comma-separated list of tags. We only autocomplete the last tag.