]> git.mxchange.org Git - mailer.git/blobdiff - inc/gen_sql_patches.php
Extension ext-user for sub id tracking continued:
[mailer.git] / inc / gen_sql_patches.php
index 2364c35972ff10f213b1ce2353a0f515fb9ba90a..783124e1b48d57dfc63436aa25dd80090460837a 100644 (file)
@@ -95,9 +95,13 @@ if (getFileHash() == '') {
 // @TODO Rewrite this to a filter
 if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isCacheInstanceValid())) {
        // Destroy some cache files
-       if ($GLOBALS['cache_instance']->loadCacheFile('config'))    $GLOBALS['cache_instance']->removeCacheFile();
-       if ($GLOBALS['cache_instance']->loadCacheFile('extension')) $GLOBALS['cache_instance']->removeCacheFile();
-       if ($GLOBALS['cache_instance']->loadCacheFile('modules'))   $GLOBALS['cache_instance']->removeCacheFile();
+       foreach (array('config', 'extension', 'filter', 'modules')  as $cache) {
+               // Is the cache file there?
+               if ($GLOBALS['cache_instance']->loadCacheFile($cache)) {
+                       // Then remove it
+                       $GLOBALS['cache_instance']->removeCacheFile();
+               } // END - if
+       } // END - foreach
 } // END - if
 
 // [EOF]