1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-07 10:24:48 +02:00

Moved include files

git-svn-id: file:///svn/phpbb/trunk@94 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt
2001-03-09 23:33:06 +00:00
parent 6be03b553d
commit d3d031d9ee
12 changed files with 238 additions and 206 deletions

View File

@ -36,7 +36,7 @@ function error_die($db, $error_code = "", $error_msg = "")
{
include('language/lang_english.'.$phpEx);
}
include('page_header.'.$phpEx);
include('includes/page_header.'.$phpEx);
}
if(!$error_msg)
{
@ -77,7 +77,7 @@ function error_die($db, $error_code = "", $error_msg = "")
$template->set_file(array("error_body" => "error_body.tpl"));
$template->set_var(array("ERROR_MESSAGE" => $error_msg));
$template->pparse("output", "error_body");
include('page_tail.'.$phpEx);
include('includes/page_tail.'.$phpEx);
exit();
}