Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.703 diff -u -r1.703 node.module --- modules/node/node.module 4 Oct 2006 06:59:30 -0000 1.703 +++ modules/node/node.module 4 Oct 2006 18:16:00 -0000 @@ -2890,6 +2890,13 @@ $form['body_filter']['format'] = filter_form($node->format); } + $form['log'] = array( + '#type' => 'textarea', + '#title' => t('Log message'), + '#weight' => 5, + '#description' => t('An explanation of the additions or updates being made to help other authors understand your motivations.'), + ); + return $form; }