#39124 by dww. Don't default the log message to the last log message.
parent
5bc5413aa8
commit
0c64b251c4
|
@ -261,7 +261,6 @@ function book_form(&$node) {
|
||||||
$form['log'] = array(
|
$form['log'] = array(
|
||||||
'#type' => 'textarea',
|
'#type' => 'textarea',
|
||||||
'#title' => t('Log message'),
|
'#title' => t('Log message'),
|
||||||
'#default_value' => $node->log,
|
|
||||||
'#weight' => 5,
|
'#weight' => 5,
|
||||||
'#description' => t('An explanation of the additions or updates being made to help other authors understand your motivations.'),
|
'#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',
|
$form['log'] = array('#type' => 'textarea',
|
||||||
'#title' => t('Log message'),
|
'#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.'),
|
'#description' => t('An explanation to help other authors understand your motivations to put this post into the book.'),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue