X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Floader%2Fload_cache-them.php;h=f8d70df07d622142dbc0b3f23478f1fcc8f591f0;hp=f67cc108a525b1fc475d9b0d0d244fd09bbb45b2;hb=f9a9c09e1ae257449bfd98f8854e321efba1dc3c;hpb=7f104f6fe558bb56b4205241435a2357c2feece1 diff --git a/inc/loader/load_cache-them.php b/inc/loader/load_cache-them.php index f67cc108a5..f8d70df07d 100644 --- a/inc/loader/load_cache-them.php +++ b/inc/loader/load_cache-them.php @@ -37,11 +37,11 @@ if (!defined('__SECURITY')) { require($INC); } -// Next cached table is the referral system (themes)... -if (($cacheInstance->cache_file("themes", true) == true) && ($cacheInstance->ext_version_matches("theme"))) { - // Load referral system from cache +// Next cached table is the referal system (themes)... +if (($cacheInstance->loadCacheFile("themes")) && ($cacheInstance->extensionVersionMatches("theme"))) { + // Load referal system from cache global $cacheArray; - $cache = $cacheInstance->cache_load(); + $cache = $cacheInstance->getArrayFromCache(); // Restructure the array $cacheArray['themes'] = array(); @@ -62,34 +62,31 @@ if (($cacheInstance->cache_file("themes", true) == true) && ($cacheInstance->ext // Remove dummy array unset($cache); -} elseif (($_CONFIG['cache_refsys'] == "Y") && ($CSS != "1") && ($CSS != "-1")) { +} elseif ((getConfig('cache_themes') == "Y") && ($CSS != "1") && ($CSS != "-1")) { // Create cache file here - $cacheInstance->cache_init("THEMES"); - $cacheInstance->store_extension_version("theme"); + $cacheInstance->init("THEMES"); + $cacheInstance->storeExtensionVersion("theme"); // Load all themes and their data if (GET_EXT_VERSION("theme") >= "0.0.7") { - $result = SQL_QUERY("SELECT id, theme_path, theme_active, theme_ver, theme_name FROM "._MYSQL_PREFIX."_themes ORDER BY id", __FILE__, __LINE__); + $result = SQL_QUERY("SELECT id, theme_path, theme_active, theme_ver, theme_name FROM `"._MYSQL_PREFIX."_themes` ORDER BY id", __FILE__, __LINE__); } else { - $result = SQL_QUERY("SELECT id, theme_path, theme_active, theme_ver FROM "._MYSQL_PREFIX."_themes ORDER BY id", __FILE__, __LINE__); + $result = SQL_QUERY("SELECT id, theme_path, theme_active, theme_ver FROM `"._MYSQL_PREFIX."_themes` ORDER BY id", __FILE__, __LINE__); } while ($data = SQL_FETCHARRAY($result)) { // Add row to cache file - $cacheInstance->add_row($data); + $cacheInstance->addRow($data); } // END - while // Free memory SQL_FREERESULT($result); // Close the cache - $cacheInstance->cache_close(); + $cacheInstance->finalize(); // Reload the cache require(__FILE__); } -// Close file -$cacheInstance->cache_close(); - // ?>