X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Floader%2Fload-refdepths.php;h=f30616e5932bc085a4ae695489aaa82c5cc4c216;hp=f2b5027977dacb42f6f44d840c6b4d8661ae66b3;hb=a18efdcd57ba91893f0958a457b5c58639b135c3;hpb=7c3b5bc7f540276046334e6248a28fad7e27832b diff --git a/inc/loader/load-refdepths.php b/inc/loader/load-refdepths.php index f2b5027977..f30616e593 100644 --- a/inc/loader/load-refdepths.php +++ b/inc/loader/load-refdepths.php @@ -43,16 +43,18 @@ if (!defined('__SECURITY')) { return; } -// Next cached table is the referal system (refdepths)... +// Next cached table is the referral system (refdepths)... if (($GLOBALS['cache_instance']->loadCacheFile('refdepths')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) { - // Load referal system from cache + // Load referral system from cache $GLOBALS['cache_array']['refdepths'] = $GLOBALS['cache_instance']->getArrayFromCache(); } elseif (isHtmlOutputMode()) { // Create cache file here $GLOBALS['cache_instance']->init(); - // Load all modules and their data + // Query for all referral depths $result = SQL_QUERY('SELECT `id`,`level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC', __FILE__, __LINE__); + + // ... and load them while ($content = SQL_FETCHARRAY($result)) { // Add row to cache file $GLOBALS['cache_instance']->addRow($content);