summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-04-10 22:46:08 +0200
committerDries Buytaert <dries@buytaert.net>2011-04-10 22:46:08 +0200
commit37f60420d1f0eb6c1a6bd81363aae46887bfe1cc (patch)
tree2fb50133cf2849d600264cb963e18f1dfc0fbb96 /modules/taxonomy
parent62b8fd96ffbf0b5477f383d5d3e0658415efd7f9 (diff)
downloadbrdo-37f60420d1f0eb6c1a6bd81363aae46887bfe1cc.tar.gz
brdo-37f60420d1f0eb6c1a6bd81363aae46887bfe1cc.tar.bz2
- Patch #1062370 by mikeryan: vocabulary machine_name() length limited to 21, in UI only.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 8498681ed..13b2ce88e 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',
),