Index: actions.inc =================================================================== --- actions.inc (revision 133) +++ actions.inc (working copy) @@ -324,7 +324,8 @@ '%node_type' => $node->type, '%title' => $node->title, '%teaser' => strip_tags($node->teaser), - '%body' => strip_tags($node->body) + '%body' => strip_tags($node->body), + '%log' => strip_tags($node->log) ); $subject = strtr($subject, $variables); @@ -419,6 +420,7 @@ '%title' => strip_tags($node->title), '%teaser' => strip_tags($node->teaser), '%body' => strip_tags($node->body), + '%log' => strip_tags($node->log) ); } $edit['message'] = strtr($edit['message'], $variables); @@ -441,7 +443,7 @@ '#default_value' => isset($edit['message']) ? $edit['message'] : '', '#required' => TRUE, '#rows' => '8', - '#description' => t('The message to be displayed to the current user. You may include the following variables: %site_name, %username, %node_url, %node_type, %title, %teaser, %body.'), + '#description' => t('The message to be displayed to the current user. You may include the following variables: %site_name, %username, %node_url, %node_type, %title, %teaser, %body, %log.'), ); return $form;