aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-11-16 18:29:29 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-11-16 18:29:29 +0000
commitdb8e586893ddf94d5368789dfc56271f3efcd0e6 (patch)
tree57a3948374e58a6fa8ee1f2e65ae477929ab3ae5 /phpBB
parentc9cd0e1d914b779dfc6cb491b240d48fe2d4c9b0 (diff)
downloadforums-db8e586893ddf94d5368789dfc56271f3efcd0e6.tar
forums-db8e586893ddf94d5368789dfc56271f3efcd0e6.tar.gz
forums-db8e586893ddf94d5368789dfc56271f3efcd0e6.tar.bz2
forums-db8e586893ddf94d5368789dfc56271f3efcd0e6.tar.xz
forums-db8e586893ddf94d5368789dfc56271f3efcd0e6.zip
forgot to commit this fix
git-svn-id: file:///svn/phpbb/trunk@6590 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/acp/acp_disallow.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_disallow.php b/phpBB/includes/acp/acp_disallow.php
index adb7270332..70bdf30628 100644
--- a/phpBB/includes/acp/acp_disallow.php
+++ b/phpBB/includes/acp/acp_disallow.php
@@ -43,7 +43,7 @@ class acp_disallow
$sql = 'INSERT INTO ' . DISALLOW_TABLE . ' ' . $db->sql_build_array('INSERT', array('disallow_username' => $disallowed_user));
$db->sql_query($sql);
- $cache->destroy('disallowed_usernames');
+ $cache->destroy('_disallowed_usernames');
$message = $user->lang['DISALLOW_SUCCESSFUL'];
add_log('admin', 'LOG_DISALLOW_ADD', str_replace('%', '*', $disallowed_user));
@@ -63,7 +63,7 @@ class acp_disallow
WHERE disallow_id = ' . $disallowed_id;
$db->sql_query($sql);
- $cache->destroy('disallowed_usernames');
+ $cache->destroy('_disallowed_usernames');
add_log('admin', 'LOG_DISALLOW_DELETE');