X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=41a3cb954696ce6729c5e4427bae5175378e3ec8;hb=29157685184b9aa2ddbf42e9d2e49141af95f7e2;hp=fe7fea5f0a8d7fadb7d70f8e432c3e2a38738855;hpb=f2aeaab0cd313b2eeb151642455ed558f6b186dc;p=mailer.git diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index fe7fea5f0a..41a3cb9546 100644 --- a/inc/modules/admin/what-list_transfer.php +++ b/inc/modules/admin/what-list_transfer.php @@ -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