summaryrefslogtreecommitdiff
path: root/modules/update/update.module
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-01-27 17:50:10 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-01-27 17:50:10 +0000
commite130f20871a6d9f2cf8acccbb2f9227a9516408e (patch)
tree71c3dff6b31131052c48284c5a3f3cb8bc31a507 /modules/update/update.module
parent0fa792bdd1e0f0a42a760b88ab545553dc5ccada (diff)
downloadbrdo-e130f20871a6d9f2cf8acccbb2f9227a9516408e.tar.gz
brdo-e130f20871a6d9f2cf8acccbb2f9227a9516408e.tar.bz2
#200028 by agentrickard, dww: cache more project module data, so there is less burden on Drupal when generating admin pages (performance)
Diffstat (limited to 'modules/update/update.module')
-rw-r--r--modules/update/update.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/update/update.module b/modules/update/update.module
index 8f624c5c9..204047e8c 100644
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -379,7 +379,7 @@ function update_flush_caches() {
* Invalidates any cached data relating to update status.
*/
function update_invalidate_cache() {
- cache_clear_all('update_info', 'cache_update');
+ cache_clear_all('*', 'cache_update', TRUE);
}
/**