]> git.mxchange.org Git - mailer.git/blobdiff - inc/loader/load_cache-them.php
Possible final fixes for user login, debug lines rewritten to logfile, some old lost...
[mailer.git] / inc / loader / load_cache-them.php
index da82aac80e20248ccd3617a9191baebdf946e0b6..689b4331cf3fd5bbfbdc81e4970c8dda825ccb94 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/15/2008 *
- * ===============                              Last change: 09/15/2008 *
+ * Mailer v0.2.1-FINAL                                Start: 09/15/2008 *
+ * ===================                          Last change: 09/15/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : load_cache-them.php                              *
@@ -44,6 +44,9 @@ if (!defined('__SECURITY')) {
        return false;
 }
 
+// Use this code if you don't want to run this cache loader on installation phase
+if (isInstallationPhase()) return;
+
 // Next cached table is the referal system (themes)...
 if (($GLOBALS['cache_instance']->loadCacheFile('themes')) && ($GLOBALS['cache_instance']->extensionVersionMatches('theme'))) {
        // Load referal system from cache
@@ -68,9 +71,9 @@ if (($GLOBALS['cache_instance']->loadCacheFile('themes')) && ($GLOBALS['cache_in
 
        // Remove dummy array
        unset($cache);
-} elseif (getOutputMode() != '1') {
+} elseif (getOutputMode() != 1) {
        // Create cache file here
-       $GLOBALS['cache_instance']->init('THEMES');
+       $GLOBALS['cache_instance']->init();
 
        // Load all themes and their data
        if (getExtensionVersion('theme') >= '0.0.7') {
@@ -89,9 +92,6 @@ if (($GLOBALS['cache_instance']->loadCacheFile('themes')) && ($GLOBALS['cache_in
        // Close the cache
        $GLOBALS['cache_instance']->storeExtensionVersion('theme');
        $GLOBALS['cache_instance']->finalize();
-
-       // Include loader again
-       loadInclude('inc/loader/'.basename(__FILE__));
 }
 
 // [EOF]