]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_transfer.php
A lot CSS classes rewritten, please update all your themes.
[mailer.git] / inc / modules / admin / what-list_transfer.php
index fe7fea5f0a8d7fadb7d70f8e432c3e2a38738855..41a3cb954696ce6729c5e4427bae5175378e3ec8 100644 (file)
@@ -54,18 +54,17 @@ ORDER BY
        `trans_id` ASC', __FILE__, __LINE__);
 
 $total = '0';
-if (SQL_NUMROWS($result) > 0) {
+if (!SQL_HASZERONUMS($result)) {
        // Output rows
-       $OUT = ''; $SW = 2;
+       $OUT = '';
        while ($content = SQL_FETCHARRAY($result)) {
                // Prepare data for the row template
-               $content['sw']          = $SW;
                $content['time_trans']  = generateDateTime($content['time_trans'], 3);
                $content['reason']      = wordwrap($content['reason'], 15);
 
                // Load row template add points and switch color
                $OUT .= loadTemplate('admin_list_transfer_row', true, $content);
-               $total += $content['points']; $SW = 3 - $SW;
+               $total += $content['points'];
        } // END - while
 
        // Free memory