aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/adm/index.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php
index 5ffbf0f6fa..1877fe727a 100644
--- a/phpBB/adm/index.php
+++ b/phpBB/adm/index.php
@@ -14,22 +14,21 @@
define('IN_PHPBB', 1);
-// Define some vars
-$pane = (!empty($_GET['pane'])) ? htmlspecialchars($_GET['pane']) : '';
-$update = ($pane == 'right') ? true : false;
-
// Include files
$phpbb_root_path = '../';
require($phpbb_root_path . 'extension.inc');
require('pagestart.' . $phpEx);
+// Define some vars
+$pane = (!empty($_GET['pane'])) ? htmlspecialchars($_GET['pane']) : '';
+$update = ($pane == 'right') ? true : false;
+
// Do we have any admin permissions at all?
if (!$auth->acl_get('a_'))
{
trigger_error($user->lang['NO_ADMIN']);
}
-
// Generate relevant output
if ($pane == 'top')
{