diff options
Diffstat (limited to 'phpBB/admin')
-rw-r--r-- | phpBB/admin/pagestart.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/pagestart.php b/phpBB/admin/pagestart.php index 29027171b6..ccf84778fd 100644 --- a/phpBB/admin/pagestart.php +++ b/phpBB/admin/pagestart.php @@ -31,7 +31,7 @@ include($phpbb_root_path . 'common.'.$phpEx); // Start session management // $userdata = $session->start($update); -$acl = new auth('admin', $userdata); +$acl = new acl('admin', $userdata); // // End session management // @@ -189,7 +189,7 @@ function page_footer($copyright_html = true) } -function page_message($title, $message, $show_header) +function page_message($title, $message, $show_header = false) { global $phpEx, $SID, $lang; |