]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/modules/admin/what-admins_add.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / admin / what-admins_add.php
index 522deafff57d33d782d64ac24e6d923da437880f..c3073789f19d362504197c4a855bc82d07cd2d06 100644 (file)
@@ -1,86 +1,86 @@
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 04/12/2004 *\r
- * ================                             Last change: 04/18/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-admins_add.php                              *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Add new administrator account                    *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Neues Administrator-Account anlegen              *\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
-// Add description as navigation point\r
-ADD_DESCR("admin", basename(__FILE__));\r
-\r
-global $CACHE;\r
-\r
-// Display form is default\r
-$FORM = true;\r
-\r
-if ((isset($_POST['add'])) && (!empty($_POST['login'])) && (!empty($_POST['email'])) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2'])) && ($_POST['pass1'] == $_POST['pass2']))\r
-{\r
-       // Add admin when not added already\r
-       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",\r
-        array($_POST['login']), __FILE__, __LINE__);\r
-       if (SQL_NUMROWS($result) == 0)\r
-       {\r
-               // Login does not exist so we can create it.\r
-               $FORM = false;\r
-               $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_admins (login, password, email) VALUES ('%s', '%s', '%s')",\r
-                array($_POST['login'], generateHash($_POST['pass1']), $_POST['email']), __FILE__, __LINE__);\r
-\r
-               // Admin login saved\r
-               LOAD_TEMPLATE ("admin_settings_saved", false, "<FONT class=\"admin_done\">".ADMIN_ADMINS_ADD_DONE."</FONT>");\r
-\r
-               // Remove cache file\r
-               if (EXT_IS_ACTIVE("cache"))\r
-               {\r
-                       if ($CACHE->cache_file("admins", true)) $CACHE->cache_destroy();\r
-               }\r
-       }\r
-        else\r
-       {\r
-               // Free memory\r
-               SQL_FREERESULT($result);\r
-       }\r
-}\r
-\r
-if ($FORM)\r
-{\r
-       // Clear unset variables\r
-       if (empty($_POST['login'])) $_POST['login'] = "";\r
-       if (empty($_POST['email'])) $_POST['email'] = "";\r
-\r
-       // Load form from template\r
-       LOAD_TEMPLATE("admin_admins_add");\r
-}\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 04/12/2004 *
+ * ================                             Last change: 04/18/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-admins_add.php                              *
+ * -------------------------------------------------------------------- *
+ * Short description : Add new administrator account                    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Neues Administrator-Account anlegen              *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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__));
+
+global $CACHE;
+
+// Display form is default
+$FORM = true;
+
+if ((isset($_POST['add'])) && (!empty($_POST['login'])) && (!empty($_POST['email'])) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2'])) && ($_POST['pass1'] == $_POST['pass2']))
+{
+       // Add admin when not added already
+       $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
+        array($_POST['login']), __FILE__, __LINE__);
+       if (SQL_NUMROWS($result) == 0)
+       {
+               // Login does not exist so we can create it.
+               $FORM = false;
+               $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_admins (login, password, email) VALUES ('%s', '%s', '%s')",
+                array($_POST['login'], generateHash($_POST['pass1']), $_POST['email']), __FILE__, __LINE__);
+
+               // Admin login saved
+               LOAD_TEMPLATE ("admin_settings_saved", false, "<FONT class=\"admin_done\">".ADMIN_ADMINS_ADD_DONE."</FONT>");
+
+               // Remove cache file
+               if (EXT_IS_ACTIVE("cache"))
+               {
+                       if ($CACHE->cache_file("admins", true)) $CACHE->cache_destroy();
+               }
+       }
+        else
+       {
+               // Free memory
+               SQL_FREERESULT($result);
+       }
+}
+
+if ($FORM)
+{
+       // Clear unset variables
+       if (empty($_POST['login'])) $_POST['login'] = "";
+       if (empty($_POST['email'])) $_POST['email'] = "";
+
+       // Load form from template
+       LOAD_TEMPLATE("admin_admins_add");
+}
+//
+?>