summaryrefslogtreecommitdiff
path: root/modules/taxonomy.module
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-20 02:05:35 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-05-20 02:05:35 +0000
commita5263bd284a376754bd4a4453213635427fcc38b (patch)
treeba4b30b21564d48f7ada4362df17174854ce23c4 /modules/taxonomy.module
parent168a3dcd8e1cb5769d6edc800471717a5457fa49 (diff)
downloadbrdo-a5263bd284a376754bd4a4453213635427fcc38b.tar.gz
brdo-a5263bd284a376754bd4a4453213635427fcc38b.tar.bz2
#62926 by Richard Eriksson, Increase maximum length of the free-tagging textbox to 255 characters.
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r--modules/taxonomy.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module
index d917c7511..a756654f6 100644
--- a/modules/taxonomy.module
+++ b/modules/taxonomy.module
@@ -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 {