function active_tags_taxonomy_autocomplete_validate in Active Tags 7.2
1 string reference to 'active_tags_taxonomy_autocomplete_validate'
- active_tags_field_widget_form in ./
active_tags.module - Implements hook_field_widget_form().
File
- ./
active_tags.module, line 85 - Active Tags widget for free tagging taxonomies
Code
function active_tags_taxonomy_autocomplete_validate($element, &$form_state) {
$element['#value'] = $element['terms']['#value'];
taxonomy_autocomplete_validate($element, $form_state);
}