From ade0c24804fd66982edc0fc3365707d4e51a5938 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sun, 10 Apr 2011 22:46:20 +0200 Subject: [PATCH] - Patch #1062370 by mikeryan: vocabulary machine_name() length limited to 21, in UI only. --- modules/taxonomy/taxonomy.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc index 8498681ed445..13b2ce88e8b6 100644 --- a/modules/taxonomy/taxonomy.admin.inc +++ b/modules/taxonomy/taxonomy.admin.inc @@ -146,7 +146,7 @@ function taxonomy_form_vocabulary($form, &$form_state, $edit = array()) { $form['machine_name'] = array( '#type' => 'machine_name', '#default_value' => $vocabulary->machine_name, - '#maxlength' => 21, + '#maxlength' => 255, '#machine_name' => array( 'exists' => 'taxonomy_vocabulary_machine_name_load', ), -- GitLab