MyBB Community Forums

Full Version: close thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
fixed
Open ./showthread.php file and find;
	if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid)) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0)
and Change it into;
	if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0)

In this way, you denied the use of quickreply in closed threads for Mods as well Wink
you're the man yaldaram!! thanks again boss
No problem at all Smile