summaryrefslogtreecommitdiff
path: root/modules/book.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/book.module')
-rw-r--r--modules/book.module5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/book.module b/modules/book.module
index 7ec687751..ceee6659c 100644
--- a/modules/book.module
+++ b/modules/book.module
@@ -249,7 +249,10 @@ 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' => 18,
+ '#type' => 'fieldset', '#title' => t('Log message'), '#collapsible' => TRUE, '#collapsed' => TRUE
+ );
+ $form['log']['message'] = array(
+ '#type' => 'textarea', '#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.')
);