]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-chk_regs.php
A lot code rewritten:
[mailer.git] / inc / modules / admin / what-chk_regs.php
index be8452bcf7a6dc946cacb0e6a825522b720a104c..4760a601053b0ea48bfbe2ffdf2822764f2dc70b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/28/2003 *
- * ===============                              Last change: 03/24/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 09/28/2003 *
+ * ===================                          Last change: 03/24/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-chk_regs.php                                *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -56,35 +57,29 @@ ORDER BY
 
 if (SQL_NUMROWS($result) > 0) {
        // We have some (new?) registrations!
-       $OUT = ''; $SW = 2;
+       $OUT = '';
        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: ip->REMOTE_ADDR,hash->user_hash in template
                $content = array(
-                       'sw'      => $SW,
-                       'gender'  => translateGender($content['gender']),
-                       'surname' => $content['surname'],
-                       'family'  => $content['family'],
-                       'email'   => "<a href=\"".generateEmailLink($content['email'], 'user_data')."\">".$content['email']."</a>",
-                       'ip'      => $content['REMOTE_ADDR'],
-                       'refid'   => $content['refid'],
-                       'hash'    => $content['user_hash'],
-                       'link'    => generateUserProfileLink($content['userid']),
+                       'gender'      => $content['gender'],
+                       'surname'     => $content['surname'],
+                       'family'      => $content['family'],
+                       'email'       => '<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['email'] . '</a>',
+                       'remote_addr' => $content['REMOTE_ADDR'],
+                       'refid'       => $content['refid'],
+                       'user_hash'   => $content['user_hash'],
+                       'userid'      => $content['userid'],
                );
 
                // Load row template and switch color
                $OUT .= loadTemplate('admin_list_chk_reg_row', true, $content);
-               $SW = 3 - $SW;
-       }
+       } // END - while
 
        // Load main template
        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'));
+       loadTemplate('admin_settings_saved', false, '{--ADMIN_ALL_CONFIRMED_EMAIL--}');
 }
 
 // Free memory