2007-08-26, 06:45 PM
Then do this:
Open showthread.php
Find
Replace by
Open showthread.php
Find
eval("\$newthread = \"".$templates->get("showthread_newthread")."\";");
// Show the appropriate reply button if this thread is open or closed
if($thread['closed'] == "yes")
{
eval("\$newreply = \"".$templates->get("showthread_newreply_closed")."\";");
}
else
{
eval("\$newreply = \"".$templates->get("showthread_newreply")."\";");
}
Replace by
// Show the appropriate reply button if this thread is open or closed
if($thread['closed'] == "yes")
{
eval("\$newreply = \"".$templates->get("showthread_newreply_closed")."\";");
}
else
{
eval("\$newreply = \"".$templates->get("showthread_newreply")."\";");
}
if($forumpermissions['canpostthreads'] != "no")
{
eval("\$newthread = \"".$templates->get("showthread_newthread")."\";");
}
else
{
$newthread = "";
}