diff options
Diffstat (limited to 'phpBB/mcp.php')
-rw-r--r-- | phpBB/mcp.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/mcp.php b/phpBB/mcp.php index f6ff246133..729469f47b 100644 --- a/phpBB/mcp.php +++ b/phpBB/mcp.php @@ -52,9 +52,10 @@ include($phpbb_root_path . 'includes/functions_admin.'.$phpEx); // Start session management $user->start(); -$user->setup(); $auth->acl($user->data); +$user->setup(); + // Obtain initial var settings $forum_id = (isset($_REQUEST['f'])) ? max(0, intval($_REQUEST['f'])) : 0; |