]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-chk_regs.php
Naming convention applied to language strings, new API function added:
[mailer.git] / inc / modules / admin / what-chk_regs.php
index a21d404b95e92c5a7d234341b6898f66a0aa6014..55fa4aa54b81f0d0f286c18e5236c5171be8b123 100644 (file)
@@ -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,14 +73,13 @@ 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);
 } else {
        // No registrations left - or all has confirmed their email address... :-)
-       loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL'));
+       loadTemplate('admin_settings_saved', false, '{--ADMIN_ALL_CONFIRMED_EMAIL--}');
 }
 
 // Free memory