[Comoblog-commit] modules/mod_comment_notify mod_comment_notify_comment_filter.php,1.5,1.6
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-12-16 00:51:59
|
Update of /cvsroot/comoblog/modules/mod_comment_notify In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3472 Modified Files: mod_comment_notify_comment_filter.php Log Message: 1361309 - Add the 'To Name' back into the script while also ensuring duplicates don't occur Index: mod_comment_notify_comment_filter.php =================================================================== RCS file: /cvsroot/comoblog/modules/mod_comment_notify/mod_comment_notify_comment_filter.php,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- mod_comment_notify_comment_filter.php 16 Dec 2005 00:37:48 -0000 1.5 +++ mod_comment_notify_comment_filter.php 16 Dec 2005 00:51:49 -0000 1.6 @@ -8,12 +8,12 @@ $body .= "Link: " .CFG_SITE_URL. "post.php?/". $comment['post_id'] ."\n"; $body .= "From: " . $comment['comment_author'] . " - " . $comment['comment_author_email'] ."\n"; $body .= "Comment:\n\n" . filter_html($comment['comment_text']) ."\n"; -$recipients = CFG_COMMENT_NOTIFY_TO; $headerstring = "MIME-Version: 1.0\r\n". "Content-type: text/plain; charset=iso-8859-1\r\n". "From: ".CFG_COMMENT_NOTIFY_FROM_NAME."<".CFG_COMMENT_NOTIFY_FROM.">\r\n". + "To: ".CFG_COMMENT_NOTIFY_TO_NAME."<".CFG_COMMENT_NOTIFY_TO.">\r\n". "Date: ".date("r")."\r\n". "Subject: ".$subject."\r\n"; |