win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / admin / what-chk_regs.php
index ea946107683c59e7885eafefcaa708189579b321..3efc110daad4599b17e9733ce0d934b13b1152d4 100644 (file)
@@ -1,87 +1,87 @@
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 09/28/2003 *\r
- * ===============                              Last change: 03/24/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-chk_regs.php                                *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Check new registrations                          *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Neue Anmeldungen pr�fen                          *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
-\r
-// Add description as navigation point\r
-ADD_DESCR ("admin", basename(__FILE__));\r
-\r
-// Check for accounts\r
-$query = SQL_QUERY("SELECT userid, sex, surname, family, email, REMOTE_ADDR, refid, user_hash FROM "._MYSQL_PREFIX."_user_data WHERE status='UNCONFIRMED' ORDER BY userid", __FILE__, __LINE__);\r
-\r
-OPEN_TABLE("100%", "admin_content admin_content_align", "");\r
-if (SQL_NUMROWS($query) > 0)\r
-{\r
-       // We have some (new?) registrations!\r
-       $SW = 2; $OUT = "";\r
-       while (list($uid, $sex, $sname, $fname, $email, $IP, $ref, $hash) = SQL_FETCHROW($query))\r
-       {\r
-               if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref);\r
-               // Prepare array for the row template\r
-               $content = array(\r
-                       'sw'    => $SW,\r
-                       'sex'   => TRANSLATE_SEX($sex),\r
-                       'sname' => $sname,\r
-                       'fname' => $fname,\r
-                       'email' => "<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".stripslashes($email)."</A>",\r
-                       'ip'    => $IP,\r
-                       'ref'   => $ref,\r
-                       'hash'  => $hash,\r
-                       'link'  => ADMIN_USER_PROFILE_LINK($uid),\r
-               );\r
-\r
-               // Load row template and switch color\r
-               $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content);\r
-               $SW = 3 - $SW;\r
-       }\r
-\r
-       // Free memory\r
-       SQL_FREERESULT($query);\r
-       define('__REG_ROWS', $OUT);\r
-\r
-       // Load main template\r
-       LOAD_TEMPLATE("admin_reg");\r
-}\r
- else\r
-{\r
-       // No registrations left - or all has confirmed their email address... :-)\r
-       LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_ALL_CONFIRMED_EMAIL);\r
-}\r
-CLOSE_TABLE();\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 09/28/2003 *
+ * ===============                              Last change: 03/24/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-chk_regs.php                                *
+ * -------------------------------------------------------------------- *
+ * Short description : Check new registrations                          *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Neue Anmeldungen pr�fen                          *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+
+// Add description as navigation point
+ADD_DESCR ("admin", basename(__FILE__));
+
+// Check for accounts
+$query = SQL_QUERY("SELECT userid, sex, surname, family, email, REMOTE_ADDR, refid, user_hash FROM "._MYSQL_PREFIX."_user_data WHERE status='UNCONFIRMED' ORDER BY userid", __FILE__, __LINE__);
+
+OPEN_TABLE("100%", "admin_content admin_content_align", "");
+if (SQL_NUMROWS($query) > 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);
+               // Prepare array for the row template
+               $content = array(
+                       'sw'    => $SW,
+                       'sex'   => TRANSLATE_SEX($sex),
+                       'sname' => $sname,
+                       'fname' => $fname,
+                       'email' => "<A href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".stripslashes($email)."</A>",
+                       'ip'    => $IP,
+                       'ref'   => $ref,
+                       'hash'  => $hash,
+                       'link'  => ADMIN_USER_PROFILE_LINK($uid),
+               );
+
+               // Load row template and switch color
+               $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content);
+               $SW = 3 - $SW;
+       }
+
+       // Free memory
+       SQL_FREERESULT($query);
+       define('__REG_ROWS', $OUT);
+
+       // Load main template
+       LOAD_TEMPLATE("admin_reg");
+}
+ else
+{
+       // No registrations left - or all has confirmed their email address... :-)
+       LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_ALL_CONFIRMED_EMAIL);
+}
+CLOSE_TABLE();
+//
+?>