A lot code rewritten:
[mailer.git] / inc / modules / member / what-stats.php
index 75a93fa8b0bf549fae7ebb5d734ab2ceef51651d..400537f49510769214e37fd06c7d30458e422c9c 100644 (file)
@@ -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