]> 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 24bd20b76f0851532d4f571faa5e6a2883d9f707..783124e1b48d57dfc63436aa25dd80090460837a 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -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]