0) { // We have some (new?) registrations! $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 // @TODO Rewritings: surname->surname,family->family,ip->REMOTE_ADDR,ref->refid,hash->user_hash in template $content = array( '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']), ); // Load row template and switch color $OUT .= loadTemplate('admin_reg_row', true, $content); $SW = 3 - $SW; } // Load main template loadTemplate('admin_reg', false, $OUT); } else { // No registrations left - or all has confirmed their email address... :-) loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL')); } // Free memory SQL_FREERESULT($result); // [EOF] ?>