X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=55fa4aa54b81f0d0f286c18e5236c5171be8b123;hb=71c07e991fc7f5393317f4d9adf4ecdbc26b9aa3;hp=1875df63d5cfc62b9b2772023169ea1361c1a57c;hpb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c;p=mailer.git diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index 1875df63d5..55fa4aa54b 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -54,36 +55,31 @@ 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)) { - // Add link to refid - if ($content['refid'] > 0) $content['refid'] = generateUserProfileLink($content['refid']); - // Prepare array for the row template $content = array( - 'sw' => $SW, - 'gender' => translateGender($content['gender']), + 'gender' => $content['gender'], 'surname' => $content['surname'], 'family' => $content['family'], 'email' => '' . $content['email'] . '', 'remote_addr' => $content['REMOTE_ADDR'], 'refid' => $content['refid'], 'user_hash' => $content['user_hash'], - 'link' => generateUserProfileLink($content['userid']), + 'userid' => $content['userid'], ); // 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