diff options
Diffstat (limited to 'phpBB/develop')
-rw-r--r-- | phpBB/develop/repair_bots.php | 2 | ||||
-rw-r--r-- | phpBB/develop/search_fill.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/repair_bots.php b/phpBB/develop/repair_bots.php index 6743b7deba..c2cea16b28 100644 --- a/phpBB/develop/repair_bots.php +++ b/phpBB/develop/repair_bots.php @@ -19,7 +19,7 @@ include(PHPBB_ROOT_PATH . 'includes/functions_user.' . PHP_EXT); // Start session management phpbb::$user->session_begin(); -$auth->acl(phpbb::$user->data); +phpbb::$acl->init(phpbb::$user->data); phpbb::$user->setup(); $bots = array( diff --git a/phpBB/develop/search_fill.php b/phpBB/develop/search_fill.php index 4d80b19f55..ef683109a3 100644 --- a/phpBB/develop/search_fill.php +++ b/phpBB/develop/search_fill.php @@ -29,7 +29,7 @@ include(PHPBB_ROOT_PATH . 'common.' . PHP_EXT); // Start session management phpbb::$user->session_begin(); -$auth->acl(phpbb::$user->data); +phpbb::$acl->init(phpbb::$user->data); phpbb::$user->setup(); $search_type = phpbb::$config['search_type']; |