From fc3d35ee953f7f16a485411c2bc5d4441daa6387 Mon Sep 17 00:00:00 2001 From: Neil Drumm Date: Tue, 27 Feb 2007 19:19:28 +0000 Subject: [PATCH] #112556 by RobRoy. Match maxlength with the database. --- modules/taxonomy/taxonomy.module | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index f2c68ef8049f..3d32faefdc41 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -230,6 +230,7 @@ function taxonomy_form_vocabulary($edit = array()) { ); $form['help'] = array('#type' => 'textfield', '#title' => t('Help text'), + '#maxlength' => 255, '#default_value' => $edit['help'], '#description' => t('Instructions to present to the user when choosing a term.'), );