1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-03 00:17:35 +02:00

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
This commit is contained in:
Paul S. Owen
2003-07-14 22:54:39 +00:00
parent 405cac7b99
commit f06ad43da6
4 changed files with 19 additions and 15 deletions

View File

@ -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;