- Patch #809838 by mr.baileys: maxlength settings didn't work in Field UI.

merge-requests/26/head
Dries Buytaert 2010-06-08 06:15:13 +00:00
parent a3c33a0229
commit 20223878e6
1 changed files with 1 additions and 0 deletions

View File

@ -524,6 +524,7 @@ function text_field_widget_form(&$form, &$form_state, $field, $instance, $langco
'#type' => 'textfield',
'#default_value' => isset($items[$delta]['value']) ? $items[$delta]['value'] : NULL,
'#size' => $instance['widget']['settings']['size'],
'#maxlength' => $field['settings']['max_length'],
'#attributes' => array('class' => array('text-full')),
);
break;