X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-stats.php;h=06cb3d8977ed9fc6eb68c5f3649e4b9ef0885b6a;hb=4cc62618b7a59c6641b057c34047b2dd531c16ad;hp=d289d11caaefce4c3329debeca45c0c311382fc2;hpb=f2aeaab0cd313b2eeb151642455ed558f6b186dc;p=mailer.git diff --git a/inc/modules/guest/what-stats.php b/inc/modules/guest/what-stats.php index d289d11caa..06cb3d8977 100644 --- a/inc/modules/guest/what-stats.php +++ b/inc/modules/guest/what-stats.php @@ -140,7 +140,7 @@ switch (getConfig('guest_stats')) { // Generate monthly stats $SW = 2; $r2 = ' right'; $l = 'll'; $r = 'lr'; $OUT = ''; foreach ($months as $month => $cnt) { - if ($SW == 2) $OUT .= "\n"; + if ($SW == 2) $OUT .= ''; // Prepare data for template $data = array( @@ -158,28 +158,26 @@ switch (getConfig('guest_stats')) { $r2 = ''; $l = 'rl'; $r = 'rr'; } else { - $OUT .= "\n"; + $OUT .= ''; $r2 = ' right'; $l = 'll'; $r = 'lr'; } $SW = 3 - $SW; - } + } // END - foreach $content['month_rows'] = $OUT; // Generate category stats - $OUT = ''; $SW = 2; + $OUT = ''; foreach ($cat_cnt as $id => $cnt) { // Prepare data for the template $data = array( - 'sw' => $SW, 'cat' => $cats[$id], 'cnt' => $cnt, ); // Load row template and switch colors $OUT .= loadTemplate('guest_stats_cats_row', true, $data); - $SW = 3 - $SW; - } + } // END - foreach $content['cats_rows'] = $OUT; // Load final template @@ -196,33 +194,25 @@ switch (getConfig('guest_stats')) { $mem_t10 = SQL_QUERY("SELECT `counter`, `title` FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `counter` > 0".$AND." ORDER BY `counter` DESC LIMIT 0,10", __FILE__, __LINE__); $OUT = ''; - if (SQL_NUMROWS($guest_t10) > 0) { + if (!SQL_HASZERONUMS($guest_t10)) { // Guest clicks - $OUT .= loadTemplate('guest_stats_header', true, getMessage('GUEST_TOP_GUEST_STATS')); - $SW = 2; + $OUT .= loadTemplate('guest_stats_header', true, '{--GUEST_TOP_GUEST_STATS--}'); while ($content = SQL_FETCHARRAY($guest_t10)) { - $content['sw'] = $SW; - // Load row template $OUT .= loadTemplate('guest_stats_row', true, $content); - $SW = 3 - $SW; } // END - while } // END - if - if (SQL_NUMROWS($mem_t10) > 0) { + if (!SQL_HASZERONUMS($mem_t10)) { // Member clicks - $OUT .= loadTemplate('guest_stats_header', true, getMessage('GUEST_TOP_MEMBER_STATS')); - $SW = 2; + $OUT .= loadTemplate('guest_stats_header', true, '{--GUEST_TOP_MEMBER_STATS--}'); while ($content = SQL_FETCHARRAY($mem_t10)) { - $content['sw'] = $SW; - // Load row template $OUT .= loadTemplate('guest_stats_row', true, $content); - $SW = 3 - $SW; } // END - while } // END - if - if ((SQL_NUMROWS($guest_t10) > 0) || (SQL_NUMROWS($mem_t10) > 0)) { + if ((!SQL_HASZERONUMS($guest_t10)) || (!SQL_HASZERONUMS($mem_t10))) { // Prepare content $content = array( 'rows' => $OUT,