Could not log you in, please go back and try again.";
break;
case NO_POSTS:
$message_title = $lang['Information'];
$error_msg = "There are no posts in this forum
Click on the Post New Topic link on this page to post one.";
break;
case LOGIN_FAILED:
$message_title = $lang['Information'];
$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(
"message_body" => "error_body.tpl")
);
$template->assign_vars(array(
"ERROR_MESSAGE" => $error_msg)
);
$template->pparse("message_body");
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
exit();
}
?>