1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-18 22:41:28 +02:00

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
This commit is contained in:
Meik Sievertsen
2007-04-22 18:09:03 +00:00
parent 5742dcd68a
commit 5cb586461b
10 changed files with 34 additions and 26 deletions

View File

@@ -74,7 +74,7 @@ class acp_ranks
}
$db->sql_query($sql);
$cache->destroy('ranks');
$cache->destroy('_ranks');
trigger_error($message . adm_back_link($this->u_action));
@@ -105,7 +105,7 @@ class acp_ranks
WHERE user_rank = $rank_id";
$db->sql_query($sql);
$cache->destroy('ranks');
$cache->destroy('_ranks');
add_log('admin', 'LOG_RANK_REMOVED', $rank_title);
}