X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=3b55cfdf9b5c14e78ed24494c5d36afd2d4f7afa;hp=f8d1b32ab8f5de74ca952718d9d213c2556b37aa;hb=c8d76610eb94093d4eed4fcd8a6cb72e74c8f6d8;hpb=56156f6c4392510cdbe0eb4f2ccefc23b43e2672 diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index f8d1b32ab8..3b55cfdf9b 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -1,7 +1,7 @@ 0) { +if (!SQL_HASZERONUMS($result)) { // We have some (new?) registrations! - $SW = 2; $OUT = ""; - while (list($uid, $gender, $sname, $fname, $email, $IP, $ref, $hash) = SQL_FETCHROW($result)) { - if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref); + $OUT = ''; + while ($content = SQL_FETCHARRAY($result)) { // Prepare array for the row template $content = array( - 'sw' => $SW, - 'gender' => TRANSLATE_GENDER($gender), - 'sname' => $sname, - 'fname' => $fname, - 'email' => "".$email."", - 'ip' => $IP, - 'ref' => $ref, - 'hash' => $hash, - 'link' => ADMIN_USER_PROFILE_LINK($uid), + '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'], + 'userid' => $content['userid'], ); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content); - $SW = 3 - $SW; - } - - // Remember rows - define('__REG_ROWS', $OUT); + $OUT .= loadTemplate('admin_list_chk_reg_row', true, $content); + } // END - while // Load main template - LOAD_TEMPLATE("admin_reg"); + loadTemplate('admin_list_chk_reg', false, $OUT); } else { // No registrations left - or all has confirmed their email address... :-) - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_ALL_CONFIRMED_EMAIL); + loadTemplate('admin_settings_saved', false, '{--ADMIN_ALL_CONFIRMED_EMAIL--}'); } // Free memory SQL_FREERESULT($result); -// +// [EOF] ?>