#39124 by dww. Don't default the log message to the last log message.

5.x
Neil Drumm 2006-08-17 09:08:16 +00:00
parent 5bc5413aa8
commit 0c64b251c4
1 changed files with 0 additions and 2 deletions

View File

@ -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.'),
);