X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-stats.php;h=8a37457834b40138ecdace2802f72110ab840217;hb=34db702d004b245e5528b0ba20c6de441f61820a;hp=75a93fa8b0bf549fae7ebb5d734ab2ceef51651d;hpb=6d36252268cb1928efaab3862dfb5df8006ef60a;p=mailer.git diff --git a/inc/modules/member/what-stats.php b/inc/modules/member/what-stats.php index 75a93fa8b0..8a37457834 100644 --- a/inc/modules/member/what-stats.php +++ b/inc/modules/member/what-stats.php @@ -63,32 +63,15 @@ ORDER BY array(getMemberId()), __FILE__, __LINE__); // Are there mails left in pool? -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // 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 - $content = array( - 'sw' => $SW, - 'id' => $content['id'], - 'cat' => getCategory($content['cat_id']), - 'pay' => getPaymentTitlePrice($content['payment_id']), - 'subject' => $content['subject'], - 'url' => generateDerefererUrl($content['url']), - 'timestamp' => generateDateTime($content['timestamp'], 2), - 'target_send' => $content['target_send'], - 'type' => translatePoolType($content['data_type']), - 'zip' => $content['zip'] - ); + $content['timestamp'] = generateDateTime($content['timestamp'], 2); // Load template $OUT .= loadTemplate('member_pool_row', true, $content); - - // Switch color - $SW = 3 - $SW; } // END - if // Load main template @@ -112,13 +95,12 @@ ORDER BY `timestamp_ordered` DESC", array(getMemberId()), __FILE__, __LINE__); -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // 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 +114,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