X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-stats.php;h=400537f49510769214e37fd06c7d30458e422c9c;hp=75a93fa8b0bf549fae7ebb5d734ab2ceef51651d;hb=cf3765c38cf0a76f396aca291f71858936e92956;hpb=7f5ffcc103a856b8867ac5739dcf0a3b6710413a diff --git a/inc/modules/member/what-stats.php b/inc/modules/member/what-stats.php index 75a93fa8b0..400537f495 100644 --- a/inc/modules/member/what-stats.php +++ b/inc/modules/member/what-stats.php @@ -65,14 +65,14 @@ ORDER BY // Are there mails left in pool? if (SQL_NUMROWS($result) > 0) { // Load all orders - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Is the ZIP code set? If not, set dashes if (empty($content['zip'])) $content['zip'] = '---'; // Prepare content for output + // @TODO More usage of EL at this array $content = array( - 'sw' => $SW, 'id' => $content['id'], 'cat' => getCategory($content['cat_id']), 'pay' => getPaymentTitlePrice($content['payment_id']), @@ -86,9 +86,6 @@ if (SQL_NUMROWS($result) > 0) { // Load template $OUT .= loadTemplate('member_pool_row', true, $content); - - // Switch color - $SW = 3 - $SW; } // END - if // Load main template @@ -114,11 +111,10 @@ ORDER BY if (SQL_NUMROWS($result) > 0) { // Mail orders are in pool so we can display them - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the template $content = array( - 'sw' => $SW, 'cat_id' => $content['cat_id'], 'payment_id' => $content['payment_id'], 'url' => $content['url'], @@ -132,7 +128,6 @@ if (SQL_NUMROWS($result) > 0) { // Load row template and switch colors $OUT .= loadTemplate('member_stats_row', true, $content); - $SW = 3 - $SW; } // END - if // Load main template