X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=55fa4aa54b81f0d0f286c18e5236c5171be8b123;hb=b2850d8ddb4d3e7ad6f66dbadac86aad263ff738;hp=55ccb052874baf94c4b42f651a6a148ead43758f;hpb=04b69ac9f33369cbf654396c4a42cb1fff710ff4;p=mailer.git diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index 55ccb05287..55fa4aa54b 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -55,13 +55,12 @@ WHERE ORDER BY `userid` ASC", __FILE__, __LINE__); -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // We have some (new?) registrations! - $OUT = ''; $SW = 2; + $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Prepare array for the row template $content = array( - 'sw' => $SW, 'gender' => $content['gender'], 'surname' => $content['surname'], 'family' => $content['family'], @@ -74,8 +73,7 @@ if (SQL_NUMROWS($result) > 0) { // Load row template and switch color $OUT .= loadTemplate('admin_list_chk_reg_row', true, $content); - $SW = 3 - $SW; - } + } // END - while // Load main template loadTemplate('admin_list_chk_reg', false, $OUT);