function taxonomy_form_term_validate in Drupal 6
Same name and namespace in other branches
- 7 modules/taxonomy/taxonomy.admin.inc \taxonomy_form_term_validate()
Validation handler for the term edit form. Ensure numeric weight values.
See also
File
- modules/
taxonomy/ taxonomy.admin.inc, line 736 - Administrative page callbacks for the taxonomy module.
Code
function taxonomy_form_term_validate($form, &$form_state) {
if (isset($form_state['values']['weight']) && !is_numeric($form_state['values']['weight'])) {
form_set_error('weight', t('Weight value must be numeric.'));
}
}