summaryrefslogtreecommitdiff
path: root/modules/forum/forum.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-11-23 16:18:28 +0000
committerDries Buytaert <dries@buytaert.net>2005-11-23 16:18:28 +0000
commitd4692d569cd923f777dd6b12b84d4df7b74382de (patch)
treef0524b8af9178934c020676afa878695d3c8cc70 /modules/forum/forum.module
parent86db338c64bc8da4673500ce60ef1f1075b34df3 (diff)
downloadbrdo-d4692d569cd923f777dd6b12b84d4df7b74382de.tar.gz
brdo-d4692d569cd923f777dd6b12b84d4df7b74382de.tar.bz2
- Patch #35644 by webchick: fixed the sizes of the textareas on the node edit forms.
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r--modules/forum/forum.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module
index d74944411..265a96cbf 100644
--- a/modules/forum/forum.module
+++ b/modules/forum/forum.module
@@ -589,7 +589,7 @@ function forum_form(&$node) {
$form['shadow'] = array('#type' => 'checkbox', '#title' => t('Leave shadow copy'), '#default_value' => $shadow, '#description' => t('If you move this topic, you can leave a link in the old forum to the new forum.'));
}
- $form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#required' => TRUE
+ $form['body'] = array('#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE
);
$form = array_merge($form, filter_form($node->format));