PDA

View Full Version : Administrators Recieve all Post Reports


LanciaStratos
01-20-2003, 03:11 PM
As an administrator, I'd like to receive the email for every post reported, regardless of whether or not a moderator is set for that particular forum. It would also be nice for Super Moderators to receive all reported posts as well. I imagine this wouldn't be too hard - anyone up for this?

Xenon
01-20-2003, 07:37 PM
in report.php find this:$moderators=$DB_site->query("SELECT DISTINCT user.email FROM moderator,user WHERE user.userid=moderator.userid AND moderator.forumid IN ($foruminfo[parentlist])");

and replace with:
$moderators=$DB_site->query("SELECT DISTINCT user.email FROM moderator,user WHERE (user.userid=moderator.userid AND moderator.forumid IN ($foruminfo[parentlist])) OR user.usergroupid IN (6, 5)");

LanciaStratos
01-23-2003, 03:58 AM
Thank you, thank you, thank you, Xenon! :)