? modules/taxonomy/.cvsignore
Index: modules/taxonomy/taxonomy.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.pages.inc,v
retrieving revision 1.57
diff -r1.57 taxonomy.pages.inc
80c80,85
<  * Helper function for autocompletion
---
>  * AJAX page callback for taxonomy tag autocompletion.
>  *
>  * @param $field_name
>  *   The name of the tag field.
>  * @param $tags_typed
>  *   A comma-separated list of tags that the user has entered into the field.
82,83c87,94
< function taxonomy_autocomplete($field_name, $tags_typed = '') {
<   $field = field_info_field($field_name);
---
> function taxonomy_autocomplete($field_name, $entity_type, $tags_typed = '') {
>   // Make sure the field exists and is a taxonomy field.
>   if (!($field = field_info_field($field_name)) || $field['type'] !== 'taxonomy_term_reference') {
>     // Error string. The JavaScript handler will realize this is not JSON and
>     // will display it as debugging information.
>     print t('Taxonomy field @field_name not found.', array('@field_name' => $field_name));
>     exit;
>   }
