diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-11 03:53:36 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-02-11 03:53:36 +0000 |
commit | 5420371ac5d39c1d5a525f8e629850fe058b739f (patch) | |
tree | 041c4549e4c3d4341c60f61360df9153f161814c | |
parent | 7addef299c8124a2a6a534efeeee385a565e738c (diff) | |
download | brdo-5420371ac5d39c1d5a525f8e629850fe058b739f.tar.gz brdo-5420371ac5d39c1d5a525f8e629850fe058b739f.tar.bz2 |
#62926 by karschsp: Increase maximum length of free tagging field.
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 7cb22aa79..709c66eb0 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -527,7 +527,7 @@ function taxonomy_form_alter(&$form, $form_state, $form_id) { '#default_value' => $typed_string, '#autocomplete_path' => 'taxonomy/autocomplete/' . $vocabulary->vid, '#weight' => $vocabulary->weight, - '#maxlength' => 255, + '#maxlength' => 1024, ); } else { |