X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=6c3ca60aac0d60f37ffc130a38cbfd1d066bc679;hb=995488beda665a1fc3de65df95f2d1ae236d1245;hp=7f7df23637a1cd87a565ee054e5813b8c3db72e6;hpb=75ad748a68473ace540251427a74fb781b1145e9;p=mailer.git diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index 7f7df23637..6c3ca60aac 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -1,7 +1,7 @@ 0) -{ +if (SQL_NUMROWS($result) > 0) { // We have some (new?) registrations! - $SW = 2; $OUT = ""; - while (list($uid, $sex, $sname, $fname, $email, $IP, $ref, $hash) = SQL_FETCHROW($query)) - { - 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, - 'sex' => TRANSLATE_SEX($sex), - 'sname' => $sname, - 'fname' => $fname, - 'email' => "".stripslashes($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; } - // Free memory - SQL_FREERESULT($query); - define('__REG_ROWS', $OUT); - // Load main template - LOAD_TEMPLATE("admin_reg"); -} - else -{ + 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, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); } -CLOSE_TABLE(); -// + +// Free memory +SQL_FREERESULT($result); + +// [EOF] ?>