summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-17 09:08:16 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-17 09:08:16 +0000
commit0c64b251c4f3e00cfaac68abd9ecd94c9a4ccd13 (patch)
treea8f9f48539753044c2543169009c89f3e9074793 /modules
parent5bc5413aa892c1a8f7dd9b34b45bf9e29d187315 (diff)
downloadbrdo-0c64b251c4f3e00cfaac68abd9ecd94c9a4ccd13.tar.gz
brdo-0c64b251c4f3e00cfaac68abd9ecd94c9a4ccd13.tar.bz2
#39124 by dww. Don't default the log message to the last log message.
Diffstat (limited to 'modules')
-rw-r--r--modules/book/book.module2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/book/book.module b/modules/book/book.module
index 51b906f4e..87214754f 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -261,7 +261,6 @@ function book_form(&$node) {
$form['log'] = array(
'#type' => 'textarea',
'#title' => t('Log message'),
- '#default_value' => $node->log,
'#weight' => 5,
'#description' => t('An explanation of the additions or updates being made to help other authors understand your motivations.'),
);
@@ -306,7 +305,6 @@ function book_outline($nid) {
);
$form['log'] = array('#type' => 'textarea',
'#title' => t('Log message'),
- '#default_value' => $node->log,
'#description' => t('An explanation to help other authors understand your motivations to put this post into the book.'),
);