function maxlength_field_remove_submit in Maxlength 6.2
Submit callback that removes the maxlength variables.
1 string reference to 'maxlength_field_remove_submit'
- maxlength_form_alter in ./
maxlength.module - Implementation of hook_form_alter().
File
- ./
maxlength.module, line 67 - Enables a max length countdown on node body, title and CCK textfields.
Code
function maxlength_field_remove_submit($form, &$form_state) {
maxlength_remove_field_variables($form_state['values']['field_name']);
}