--- comment_notify.module 2008-09-08 09:54:01.000000000 -0500 +++ comment_notify.module.new 2008-09-11 16:13:27.000000000 -0500 @@ -320,7 +320,7 @@ function _comment_notify_mailalert($comm } $message['subject'] = t('!site :: new comment for your post.', array('!site' => variable_get('site_name', 'drupal'))); - $message['body'][] = drupal_html_to_text(t( + $message['body'] = t( variable_get('comment_notify_default_mailtext', DEFAULT_MAILTEXT), array( '!commname' => $comment->name, @@ -340,7 +340,7 @@ function _comment_notify_mailalert($comm '!edit_uri' => url('user/'. $alert->uid .'/edit', array('absolute' => TRUE)), '!link1' => url('comment_notify/disable/'. $alert->mymd5, array('absolute' => TRUE)) ) - )); + ); drupal_mail('comment_notify', 'comment_notify_mail', $mail, $language, $message); $count++; $sent_to[] = $mail; @@ -365,7 +365,7 @@ function _comment_notify_mailalert($comm function comment_notify_mail($key, &$message, $params) { $message['subject'] = $params['subject']; - $message['body'][] = $params['body'][0]; + $message['body'][] = $params['body']; } @@ -490,4 +490,4 @@ function comment_notify_settings() { ); return system_settings_form($form); -} \ No newline at end of file +}