From dfc5e8e231668515ea6570887e7d3cfc6c95a5a7 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 8 Aug 2006 21:29:59 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=10869 --- checkin_notes | 7 +++++++ html/inc/forum_email.inc | 3 +-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 187d5a3d5e..67bc1c573a 100755 --- a/checkin_notes +++ b/checkin_notes @@ -8544,3 +8544,10 @@ David 8 Aug 2006 forum_report_post.php moderation.php white.css + +David 8 Aug 2006 + - send email to user, not moderator + + html/ + inc/ + forum_email.inc diff --git a/html/inc/forum_email.inc b/html/inc/forum_email.inc index 7e5187aa6b..f73e9099c5 100644 --- a/html/inc/forum_email.inc +++ b/html/inc/forum_email.inc @@ -140,13 +140,12 @@ For further information and assistance with ".PROJECT." go to $master_url"; function send_banish_email($user) { $subject = PROJECT." posting privileges suspended"; - $forum_post_reporting_admin = newUser(FORUM_MODERATION_EMAIL_USER_ID); $body = " This email is to inform you that you will not be able to post to the ".PROJECT." message boards for two weeks, because your postings have not followed our guidelines. "; - return re_send_email($forum_post_reporting_admin, $subject, $body); + return re_send_email($user, $subject, $body); } ?>