#62926 by Richard Eriksson, Increase maximum length of the free-tagging textbox to 255 characters.

5.x
Neil Drumm 2006-05-20 02:05:35 +00:00
parent 168a3dcd8e
commit a5263bd284
2 changed files with 2 additions and 2 deletions

View File

@ -648,7 +648,7 @@ function taxonomy_form_alter($form_id, &$form) {
'#default_value' => $typed_string,
'#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid,
'#weight' => $vocabulary->weight,
'#maxlength' => 100,
'#maxlength' => 255,
);
}
else {

View File

@ -648,7 +648,7 @@ function taxonomy_form_alter($form_id, &$form) {
'#default_value' => $typed_string,
'#autocomplete_path' => 'taxonomy/autocomplete/'. $vocabulary->vid,
'#weight' => $vocabulary->weight,
'#maxlength' => 100,
'#maxlength' => 255,
);
}
else {