Post New Topic link on this page to post one.";
break;
case LOGIN_FAILED:
$error_msg = "Login Failed. You have specified an incorrect/inactive username or invalid password, please go back and try again.";
break;
}
}
if(DEBUG)
{
if($line != "" && $file != "")
$error_msg .= "
DEBUG INFO
Line: ".$line."
File: ".$file;
}
$template->set_filenames(array(
"error_body" => "error_body.tpl"));
$template->assign_vars(array(
"ERROR_MESSAGE" => $error_msg));
$template->pparse("error_body");
include('includes/page_tail.'.$phpEx);
exit();
}
?>