PDA

View Full Version : Prohibit Moderators from Replying to Closed Threads


Marshalus
07-29-2002, 09:56 PM
Is there a way to stop moderators from replying to a closed thread, but still allow Super Mods and Admins to?

Admin
07-30-2002, 07:11 AM
In newreply.php replace this:
if (!$threadinfo[open]) {
if (!ismoderator($threadinfo[forumid],"canopenclose")) {
With this:
if (!$threadinfo[open]) {
if ($bbuserinfo['usergroupid'] != 6 and $bbuserinfo['usergroupid'] != 5) {
But remember that the mods could just open the thread, reply, and close it again.