From 66f3131922c0aedcb317f389c65a6e7f22e050ab Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 24 Jul 2001 11:38:36 +0000 Subject: Replaced git-svn-id: file:///svn/phpbb/trunk@740 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/error.php | 112 ----------------------------------------------- 1 file changed, 112 deletions(-) delete mode 100644 phpBB/includes/error.php (limited to 'phpBB/includes/error.php') diff --git a/phpBB/includes/error.php b/phpBB/includes/error.php deleted file mode 100644 index fc01406f89..0000000000 --- a/phpBB/includes/error.php +++ /dev/null @@ -1,112 +0,0 @@ -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(); -} - -?> \ No newline at end of file -- cgit v1.2.1