X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=1875df63d5cfc62b9b2772023169ea1361c1a57c;hp=8001828b0e7e653b61651bdb46068858ff7e1222;hb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c;hpb=c47144dd555bbab4acdf9085e4623900dedb0e7c diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index 8001828b0e..1875df63d5 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -1,7 +1,7 @@ 0) { // 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 = ''; $SW = 2; + 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' => TRANSLATE_GENDER($gender), - 'sname' => $sname, - 'fname' => $fname, - 'email' => "".$email."", - 'ip' => $IP, - 'ref' => $ref, - 'hash' => $hash, - 'link' => ADMIN_USER_PROFILE_LINK($uid), + 'sw' => $SW, + 'gender' => translateGender($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']), ); // Load row template and switch color - $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content); + $OUT .= loadTemplate('admin_list_chk_reg_row', true, $content); $SW = 3 - $SW; } - // Remember rows - define('__REG_ROWS', $OUT); - // 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, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); } // Free memory SQL_FREERESULT($result); -// +// [EOF] ?>