You are here

function maxlength_after_build in Maxlength 6.2

Finds all the elements in the form that request #max_length_properties behaviour and respond.

1 string reference to 'maxlength_after_build'
maxlength_form_alter in ./maxlength.module
Implementation of hook_form_alter().

File

./maxlength.module, line 115
Enables a max length countdown on node body, title and CCK textfields.

Code

function maxlength_after_build($element) {
  maxlength_recursive($element);
  return $element;
}