win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / modules / admin / what-maintenance.php
index 422aaf71b6dc2d533f4e3dfe86b87ed374384a9e..734640b9110244593eb71a2aaa5bddfbbc720504 100644 (file)
@@ -1,82 +1,82 @@
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 05/06/2004 *\r
- * ================                             Last change: 05/06/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-maintenance.php                             *\r
- * -------------------------------------------------------------------- *\r
- * Short description : De/activate maintenance mode                     *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Wartungsmodus de/aktivieren                      *\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
-if (isset($_POST['ok']))\r
-{\r
-       // De- or activate maintenance mode\r
-       switch ($CONFIG['maintenance'])\r
-       {\r
-       case "Y":\r
-               $target_mode = "N";\r
-               $out = ADMIN_MAINTENANCE_DEACTIVATED;\r
-               break;\r
-\r
-       case "N":\r
-               $target_mode = "Y";\r
-               $out = ADMIN_MAINTENANCE_ACTIVATED;\r
-               break;\r
-       }\r
-\r
-       // Update config\r
-       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET maintenance='%s' WHERE config='0' LIMIT 1",\r
-        array($target_mode), __FILE__, __LINE__);\r
-\r
-       // Load template\r
-       LOAD_TEMPLATE("admin_settings_saved", false, $out);\r
-}\r
- else\r
-{\r
-       switch ($CONFIG['maintenance'])\r
-       {\r
-       case "Y": // Maintenance mode is active\r
-               define('ADMIN_MAINTENANCE_MODE', ADMIN_MAINTENANCE_MODE_IS_ACTIVE);\r
-               break;\r
-\r
-       case "N": // Maintenance mode is inactive\r
-               define('ADMIN_MAINTENANCE_MODE', ADMIN_MAINTENANCE_MODE_IS_INACTIVE);\r
-               break;\r
-       }\r
-       // Display form\r
-       LOAD_TEMPLATE("admin_maintenance_form");\r
-}\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 05/06/2004 *
+ * ================                             Last change: 05/06/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-maintenance.php                             *
+ * -------------------------------------------------------------------- *
+ * Short description : De/activate maintenance mode                     *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Wartungsmodus de/aktivieren                      *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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__));
+
+if (isset($_POST['ok']))
+{
+       // De- or activate maintenance mode
+       switch ($CONFIG['maintenance'])
+       {
+       case "Y":
+               $target_mode = "N";
+               $out = ADMIN_MAINTENANCE_DEACTIVATED;
+               break;
+
+       case "N":
+               $target_mode = "Y";
+               $out = ADMIN_MAINTENANCE_ACTIVATED;
+               break;
+       }
+
+       // Update config
+       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET maintenance='%s' WHERE config='0' LIMIT 1",
+        array($target_mode), __FILE__, __LINE__);
+
+       // Load template
+       LOAD_TEMPLATE("admin_settings_saved", false, $out);
+}
+ else
+{
+       switch ($CONFIG['maintenance'])
+       {
+       case "Y": // Maintenance mode is active
+               define('ADMIN_MAINTENANCE_MODE', ADMIN_MAINTENANCE_MODE_IS_ACTIVE);
+               break;
+
+       case "N": // Maintenance mode is inactive
+               define('ADMIN_MAINTENANCE_MODE', ADMIN_MAINTENANCE_MODE_IS_INACTIVE);
+               break;
+       }
+       // Display form
+       LOAD_TEMPLATE("admin_maintenance_form");
+}
+//
+?>