From a5263bd284a376754bd4a4453213635427fcc38b Mon Sep 17 00:00:00 2001
From: Neil Drumm <drumm@3064.no-reply.drupal.org>
Date: Sat, 20 May 2006 02:05:35 +0000
Subject: [PATCH] #62926 by Richard Eriksson, Increase maximum length of the
 free-tagging textbox to 255 characters.

---
 modules/taxonomy.module          | 2 +-
 modules/taxonomy/taxonomy.module | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/taxonomy.module b/modules/taxonomy.module
index d917c751180d..a756654f6a72 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 {
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index d917c751180d..a756654f6a72 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/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 {
-- 
GitLab