summaryrefslogtreecommitdiff
path: root/modules/forum/forum.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r--modules/forum/forum.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module
index 4db6c8ee1..23cab35e8 100644
--- a/modules/forum/forum.module
+++ b/modules/forum/forum.module
@@ -439,7 +439,7 @@ function forum_form_container($edit = array()) {
'#title' => t('Container name'),
'#type' => 'textfield',
'#default_value' => $edit['name'],
- '#maxlength' => 64,
+ '#maxlength' => 255,
'#description' => t('The container name is used to identify related forums.'),
'#required' => TRUE
);
@@ -496,7 +496,7 @@ function forum_form_forum($edit = array()) {
$form['name'] = array('#type' => 'textfield',
'#title' => t('Forum name'),
'#default_value' => $edit['name'],
- '#maxlength' => 64,
+ '#maxlength' => 255,
'#description' => t('The forum name is used to identify related discussions.'),
'#required' => TRUE,
);