X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Floader%2Fload_cache-refsystem.php;h=8c2080d3265eba63206e602786e7c2c481e9635f;hb=4001187f22197f55e5a1f211fc8defcc180f7c32;hp=bb903d18f39a28badd8e3decaaddb9bfc013cddb;hpb=41e2891fb998d13b22b8d7984358f258cc85267d;p=mailer.git diff --git a/inc/loader/load_cache-refsystem.php b/inc/loader/load_cache-refsystem.php index bb903d18f3..8c2080d326 100644 --- a/inc/loader/load_cache-refsystem.php +++ b/inc/loader/load_cache-refsystem.php @@ -32,44 +32,36 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) { +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } -// Next cached table is the referral system (refsystem)... -if ($cacheInstance->cache_file("refsystem", true) == true) { - // Load referral system from cache - global $cacheArray; - $cacheArray['ref_system'] = $cacheInstance->cache_load(); - - // Valid cache file - $CNT = 0; - foreach ($cacheArray['ref_system'] as $k => $array) { - $CNT += count($array); - } - - // We now ignore empty cache here -} elseif (($_CONFIG['cache_refsys'] == "Y") && ($CSS != "1") && ($CSS != "-1")) { +// Next cached table is the referal system (refsystem)... +if (($GLOBALS['cache_instance']->loadCacheFile("refsystem")) && ($GLOBALS['cache_instance']->extensionVersionMatches("sql_patches"))) { + // Load referal system from cache + $GLOBALS['cache_array']['refsystem'] = $GLOBALS['cache_instance']->getArrayFromCache(); +} elseif ((getConfig('cache_refsys') == "Y") && ($GLOBALS['output_mode'] != "1") && ($GLOBALS['output_mode'] != "-1")) { // Create cache file here - $cacheInstance->cache_init("refsystem"); + $GLOBALS['cache_instance']->init("REFSYSTEM"); + $GLOBALS['cache_instance']->storeExtensionVersion("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__); - while ($DATA = SQL_FETCHARRAY($result)) { + $result = SQL_QUERY("SELECT id, userid, level, counter FROM `{!_MYSQL_PREFIX!}_refsystem` ORDER BY userid, level", __FILE__, __LINE__); + while ($data = SQL_FETCHARRAY($result)) { // Add row to cache file - $cacheInstance->add_row($DATA); - } + $GLOBALS['cache_instance']->addRow($data); + } // END - while // Free memory SQL_FREERESULT($result); - // Reload the cache + // Close the cache + $GLOBALS['cache_instance']->finalize(); + + // Include loader again require(__FILE__); } -// Close file -$cacheInstance->cache_close(); - // ?>