From 8d640e7d58f17639919d054a3668463a235f2ba9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 7 Oct 2009 23:25:55 +0000 Subject: [PATCH] Fix for possible non-working cache update --- inc/loader/load_cache-filter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/loader/load_cache-filter.php b/inc/loader/load_cache-filter.php index de3c9322a5..25b9083fdb 100644 --- a/inc/loader/load_cache-filter.php +++ b/inc/loader/load_cache-filter.php @@ -43,7 +43,7 @@ if (!defined('__SECURITY')) { } // Skip this cache if we count usage -if (getConfig('update_filter_usage') == 'Y') return; +if ((getConfig('update_filter_usage') == 'Y') || (EXT_VERSION_IS_OLDER('cache', '0.2.3'))) return; // Next cached table is the filteruration (filter)... if (($GLOBALS['cache_instance']->loadCacheFile('filter', true)) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) { -- 2.30.2