summaryrefslogtreecommitdiff
path: root/modules/book
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-10-24 19:03:09 +0000
committerDries Buytaert <dries@buytaert.net>2005-10-24 19:03:09 +0000
commitcc9a372eaeef787c10565d2d4c3ece75623f518c (patch)
treed0e5651e3a7fe5efa21e14c86a3e944980a3da5c /modules/book
parent47943f192d23a91514ec43948074d1ea97809d3e (diff)
downloadbrdo-cc9a372eaeef787c10565d2d4c3ece75623f518c.tar.gz
brdo-cc9a372eaeef787c10565d2d4c3ece75623f518c.tar.bz2
- Patch #34932 by tangent: fixed the placement of the 'log'-textarea on book preview pages.
Diffstat (limited to 'modules/book')
-rw-r--r--modules/book/book.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book/book.module b/modules/book/book.module
index 6c48aaf80..7ec687751 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -249,7 +249,7 @@ function book_form(&$node) {
$form = array_merge($form, filter_form($node->format));
$form['log'] = array(
- '#type' => 'textarea', '#title' => t('Log message'), '#default_value' => $node->log, '#rows' => 5, '#weight' => 19,
+ '#type' => 'textarea', '#title' => t('Log message'), '#default_value' => $node->log, '#rows' => 5, '#weight' => 18,
'#description' => t('An explanation of the additions or updates being made to help other authors understand your motivations.')
);