From d28603a1129770bb4822d23debce1569d9fa1002 Mon Sep 17 00:00:00 2001 From: "Eric J. Korpela" Date: Mon, 19 Nov 2007 17:07:35 +0000 Subject: [PATCH] Fixed typo that was breaking email notifications regarding moderations. svn path=/trunk/boinc/; revision=14261 --- html/inc/forum_email.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/inc/forum_email.inc b/html/inc/forum_email.inc index 8b469c587a..42248f6386 100644 --- a/html/inc/forum_email.inc +++ b/html/inc/forum_email.inc @@ -155,7 +155,7 @@ because your postings have not followed our guidelines. $body .= "\n\nThe moderator gave the following explanation about your suspension:\n"; $body .= $reason; } - $success = send_report_list($forum, $user->name." has been banished.", $body); + $success = mail_report_list($forum, $user->name." has been banished.", $body); $success &= send_email($user, $subject, $body); return $success; } @@ -189,7 +189,7 @@ able to resume posting at that time. $forum = new BoincForum; $forum->parent_type = 0; - $success &= send_report_list($forum, "A banishment vote for ".$user->name." has been started.", $body); + $success &= mail_report_list($forum, "A banishment vote for ".$user->name." has been started.", $body); return $success; }