aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/auth.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/acp/auth.php')
-rw-r--r--phpBB/includes/acp/auth.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/auth.php b/phpBB/includes/acp/auth.php
index 79ab7d0c21..10f5633f1e 100644
--- a/phpBB/includes/acp/auth.php
+++ b/phpBB/includes/acp/auth.php
@@ -30,7 +30,7 @@ class auth_admin extends auth
{
global $db, $cache;
- if (($this->acl_options = $cache->get('acl_options')) === false)
+ if (($this->acl_options = $cache->get('_acl_options')) === false)
{
$sql = 'SELECT auth_option, is_global, is_local
FROM ' . ACL_OPTIONS_TABLE . '
@@ -53,7 +53,7 @@ class auth_admin extends auth
}
$db->sql_freeresult($result);
- $cache->put('acl_options', $this->acl_options);
+ $cache->put('_acl_options', $this->acl_options);
}
if (!sizeof($this->option_ids))
@@ -761,7 +761,7 @@ class auth_admin extends auth
$db->sql_multi_insert(ACL_OPTIONS_TABLE, $sql_ary);
- $cache->destroy('acl_options');
+ $cache->destroy('_acl_options');
$this->acl_clear_prefetch();
return true;