X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=78ab8bca61fafbcd7be2ae2662e7545a44bb29b3;hp=8001828b0e7e653b61651bdb46068858ff7e1222;hb=4001187f22197f55e5a1f211fc8defcc180f7c32;hpb=a47a9c49a7813304ac78deb3741bdd85e6d50912 diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index 8001828b0e..78ab8bca61 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -48,20 +48,23 @@ ORDER BY userid ASC", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 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'] = ADMIN_USER_PROFILE_LINK($content['refid']); + // Prepare array for the row template + // @TODO Rewritings: sname->surname,fname->family,ip->REMOTE_ADDR,ref->refid,hash->user_hash in 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' => TRANSLATE_GENDER($content['gender']), + 'sname' => $content['surname'], + 'fname' => $content['family'], + 'email' => "".$content['email']."", + 'ip' => $content['REMOTE_ADDR'], + 'ref' => $content['refid'], + 'hash' => $content['user_hash'], + 'link' => ADMIN_USER_PROFILE_LINK($content['userid']), ); // Load row template and switch color @@ -70,6 +73,7 @@ if (SQL_NUMROWS($result) > 0) { } // Remember rows + // @TODO Rewrite this constant define('__REG_ROWS', $OUT); // Load main template