diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-11-23 16:18:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-11-23 16:18:28 +0000 |
commit | d4692d569cd923f777dd6b12b84d4df7b74382de (patch) | |
tree | f0524b8af9178934c020676afa878695d3c8cc70 /modules/blog | |
parent | 86db338c64bc8da4673500ce60ef1f1075b34df3 (diff) | |
download | brdo-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/blog')
-rw-r--r-- | modules/blog/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index d3339d049..a901da8e3 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -229,7 +229,7 @@ function blog_form(&$node) { } $form['title'] = array('#type' => 'textfield', '#title' => t('Title'), '#required' => TRUE, '#default_value' => $node->title); - $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)); return $form; } |