diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-07-14 22:54:39 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-07-14 22:54:39 +0000 |
commit | f06ad43da62a94c0e46219b9c878276633fb39c5 (patch) | |
tree | 87d02df7a810d829218321ab00c346c3920cb565 /phpBB/mcp.php | |
parent | 405cac7b996671069d6e4fb4b6cf0fffec66b0fb (diff) | |
download | forums-f06ad43da62a94c0e46219b9c878276633fb39c5.tar forums-f06ad43da62a94c0e46219b9c878276633fb39c5.tar.gz forums-f06ad43da62a94c0e46219b9c878276633fb39c5.tar.bz2 forums-f06ad43da62a94c0e46219b9c878276633fb39c5.tar.xz forums-f06ad43da62a94c0e46219b9c878276633fb39c5.zip |
Re-arrange auth and setup calls ... needs to be repeated for all major scripts
git-svn-id: file:///svn/phpbb/trunk@4262 89ea8834-ac86-4346-8a33-228a782c2dd0
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; |