MyBB Community Forums

Full Version: Question reguarding closed threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi I was wondering, Is it possible to have the new reply (when the topic is closed) to show as closed to mods and admins etc. as well as members? But with this I still want mods admins etc to be able to post in the closed threads. Is this possible?

Please reply,

Thanks Smile
Open up showthread.php and find:

		if($thread['closed'] != "yes" || ismod($fid) == "yes") {
			eval("\$newreply = \"".$templates->get("showthread_newreply")."\";");
		} else {
			eval("\$newreply = \"".$templates->get("showthread_newreply_closed")."\";");
		}

Replace it with:
		if($thread['closed'] != "yes") {
			eval("\$newreply = \"".$templates->get("showthread_newreply")."\";");
		} else {
			eval("\$newreply = \"".$templates->get("showthread_newreply_closed")."\";");
		}
Thanks for helping it works perfectly Smile.