taxonomy_form_term_validate($form, &$form_state)Validation handler for the term form.
modules/taxonomy/taxonomy.admin.inc, line 750
<?php
function taxonomy_form_term_validate($form, &$form_state) {
field_attach_form_validate('taxonomy_term', (object) $form_state['values'], $form, $form_state);
// Ensure numeric values.
if (isset($form_state['values']['weight']) && !is_numeric($form_state['values']['weight'])) {
form_set_error('weight', t('Weight value must be numeric.'));
}
}
?>