aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/index.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-08-30 21:21:16 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-08-30 21:21:16 +0000
commit1d004b925f9e858fcdc491da63efefb52173042c (patch)
tree77002d3de006a681097d976766116cba70cbd0fe /phpBB/adm/index.php
parent6f1d6e92460316e9d602fdf1b7466d4ad886564b (diff)
downloadforums-1d004b925f9e858fcdc491da63efefb52173042c.tar
forums-1d004b925f9e858fcdc491da63efefb52173042c.tar.gz
forums-1d004b925f9e858fcdc491da63efefb52173042c.tar.bz2
forums-1d004b925f9e858fcdc491da63efefb52173042c.tar.xz
forums-1d004b925f9e858fcdc491da63efefb52173042c.zip
necessary changes...
git-svn-id: file:///svn/phpbb/trunk@8072 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/index.php')
-rw-r--r--phpBB/adm/index.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php
index b0d41f94e4..84acd5c457 100644
--- a/phpBB/adm/index.php
+++ b/phpBB/adm/index.php
@@ -42,7 +42,7 @@ if (!$auth->acl_get('a_'))
// We define the admin variables now, because the user is now able to use the admin related features...
define('IN_ADMIN', true);
-$phpbb_admin_path = './';
+$phpbb_admin_path = (defined('PHPBB_ADMIN_PATH')) ? PHPBB_ADMIN_PATH : './';
// Some oft used variables
$safe_mode = (@ini_get('safe_mode') || @strtolower(ini_get('safe_mode')) == 'on') ? true : false;
@@ -204,11 +204,7 @@ function adm_page_footer($copyright_html = true)
$template->display('body');
garbage_collection();
-
- if (!defined('PHPBB_EMBEDDED'))
- {
- exit;
- }
+ exit_handler();
}
/**