diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-04-22 18:09:03 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-04-22 18:09:03 +0000 |
commit | 5cb586461b2b0a48d98ad7a40b0449cc5a5d9c81 (patch) | |
tree | 2f4f211b7d2e9b1ed22ea0b7927ce1481e1e8182 /phpBB/includes/acp/acp_icons.php | |
parent | 5742dcd68a674b31b91fc39978aeaf6d74c48ceb (diff) | |
download | forums-5cb586461b2b0a48d98ad7a40b0449cc5a5d9c81.tar forums-5cb586461b2b0a48d98ad7a40b0449cc5a5d9c81.tar.gz forums-5cb586461b2b0a48d98ad7a40b0449cc5a5d9c81.tar.bz2 forums-5cb586461b2b0a48d98ad7a40b0449cc5a5d9c81.tar.xz forums-5cb586461b2b0a48d98ad7a40b0449cc5a5d9c81.zip |
changed the cache files to save some memory (all global ones are hold in memory, doubling it).
git-svn-id: file:///svn/phpbb/trunk@7386 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_icons.php')
-rw-r--r-- | phpBB/includes/acp/acp_icons.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/acp/acp_icons.php b/phpBB/includes/acp/acp_icons.php index 4433119b7c..801b61112f 100644 --- a/phpBB/includes/acp/acp_icons.php +++ b/phpBB/includes/acp/acp_icons.php @@ -285,7 +285,7 @@ class acp_icons } } - $cache->destroy('icons'); + $cache->destroy('_icons'); $cache->destroy('sql', $table); if ($action == 'modify') @@ -446,7 +446,7 @@ class acp_icons } } - $cache->destroy('icons'); + $cache->destroy('_icons'); $cache->destroy('sql', $table); trigger_error($user->lang[$lang . '_IMPORT_SUCCESS'] . adm_back_link($this->u_action)); @@ -565,7 +565,7 @@ class acp_icons $notice = $user->lang[$lang . '_DELETED']; - $cache->destroy('icons'); + $cache->destroy('_icons'); $cache->destroy('sql', $table); } else @@ -617,7 +617,7 @@ class acp_icons $db->sql_query($sql); } - $cache->destroy('icons'); + $cache->destroy('_icons'); $cache->destroy('sql', $table); break; |