X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-chk_regs.php;h=159c450c07cac515a6ba2aa563d6f9514e31933f;hp=d4af53b2633ac560923b253ce67bce22a00970c2;hb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e diff --git a/inc/modules/admin/what-chk_regs.php b/inc/modules/admin/what-chk_regs.php index d4af53b263..159c450c07 100644 --- a/inc/modules/admin/what-chk_regs.php +++ b/inc/modules/admin/what-chk_regs.php @@ -1,7 +1,7 @@ 0) { if ($content['refid'] > 0) $content['refid'] = generateUserProfileLink($content['refid']); // Prepare array for the row template - // @TODO Rewritings: surname->surname,family->family,ip->REMOTE_ADDR,ref->refid,hash->user_hash in template + // @TODO Rewritings: ip->REMOTE_ADDR,hash->user_hash in template $content = array( - 'sw' => $SW, - 'gender' => translateGender($content['gender']), - 'surname' => $content['surname'], + 'sw' => $SW, + 'gender' => translateGender($content['gender']), + 'surname' => $content['surname'], 'family' => $content['family'], - 'email' => "".$content['email']."", - 'ip' => $content['REMOTE_ADDR'], - 'ref' => $content['refid'], - 'hash' => $content['user_hash'], - 'link' => generateUserProfileLink($content['userid']), + 'email' => "".$content['email']."", + 'ip' => $content['REMOTE_ADDR'], + 'refid' => $content['refid'], + 'hash' => $content['user_hash'], + 'link' => generateUserProfileLink($content['userid']), ); // Load row template and switch color - $OUT .= loadTemplate('admin_reg_row', true, $content); + $OUT .= loadTemplate('admin_list_chk_reg_row', true, $content); $SW = 3 - $SW; } // Load main template - loadTemplate('admin_reg', false, $OUT); + 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'));