it's kind of easy
open your global.php
find that:
PHP Code:
// check that board is active - if not admin, then display error
if (!$bbactive) {
if (!$permissions['cancontrolpanel']) {
eval("standarderror(\"".str_replace("\'", "'", addslashes($bbclosedreason))."\");");
exit;
}
}
and change to:
PHP Code:
// check that board is active - if not admin, then display error
if (!$bbactive) {
if (!$permissions['cancontrolpanel']) {
echo '<center>' .$bbclosedreason .'</center>';
exit;
}
}