aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/report.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-07-14 22:54:39 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-07-14 22:54:39 +0000
commitf06ad43da62a94c0e46219b9c878276633fb39c5 (patch)
tree87d02df7a810d829218321ab00c346c3920cb565 /phpBB/report.php
parent405cac7b996671069d6e4fb4b6cf0fffec66b0fb (diff)
downloadforums-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/report.php')
-rw-r--r--phpBB/report.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/report.php b/phpBB/report.php
index 32c3b55c13..c49d75588c 100644
--- a/phpBB/report.php
+++ b/phpBB/report.php
@@ -26,9 +26,10 @@ include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$user->start();
-$user->setup();
$auth->acl($user->data);
+$user->setup();
+
// var definitions
$post_id = (!empty($_REQUEST['p'])) ? intval($_REQUEST['p']) : 0;