More fixes applied from profi-conecpt, cache system rewritten: now all cache files...
[mailer.git] / inc / loader / load_cache-refsystem.php
index 5d8c7d12efc0cd6a65f3d27f7e0d5355e178eb2a..c012c7926db3f82cb70f8bbda81ebdd0ea6b4434 100644 (file)
@@ -38,13 +38,14 @@ if (!defined('__SECURITY')) {
 }
 
 // Next cached table is the referal system (refsystem)...
-if ($cacheInstance->cache_file("refsystem", true) == true) {
+if (($cacheInstance->cache_file("refsystem")) && ($cacheInstance->ext_version_matches("sql_patches"))) {
        // Load referal system from cache
        global $cacheArray;
        $cacheArray['ref_system'] = $cacheInstance->cache_load();
 } elseif (($_CONFIG['cache_refsys'] == "Y") && ($CSS != "1") && ($CSS != "-1")) {
        // Create cache file here
        $cacheInstance->cache_init("REFSYSTEM");
+       $cacheInstance->store_extension_version("sql_patches");
 
        // Load all modules and their data
        $result = SQL_QUERY("SELECT id, userid, level, counter FROM "._MYSQL_PREFIX."_refsystem ORDER BY userid, level", __FILE__, __LINE__);