]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/index.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / index.php
index 05dcbe8428837836082f8d3237342d7a4d4fc6b2..9f7f464288f4dab4aee749232485cafbd504522f 100644 (file)
@@ -1,97 +1,97 @@
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 08/25/2003 *\r
- * ===============                              Last change: 11/23/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : index.php                                        *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Index page. A simple redirection to modules.php  *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Index-Seite. Eine simple Weiterleitung auf die   *\r
- *           modules.php                                                *\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
-// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )\r
-require_once("inc/libs/security_functions.php");\r
-\r
-// Init "action" and "what"\r
-global $what, $action;\r
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";\r
-if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);\r
-if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);\r
-\r
-// Set module\r
-$GLOBALS['module'] = "index";\r
-\r
-// Load config.php\r
-require ("inc/config.php");\r
-\r
-// Is the script installed?\r
-if (defined('mxchange_installed') && (mxchange_installed))\r
-{\r
-       // Header\r
-       require(PATH."inc/header.php");\r
-\r
-       // Check for cookies\r
-       if (empty($_COOKIE['visited']) || ($CONFIG['index_delay'] == 0) || ($CONFIG['index_cookie'] == 0))\r
-       {\r
-               if ($CONFIG['index_cookie'] > 0)\r
-               {\r
-                       // Set cookie and remeber it for specified time\r
-                       @setcookie("visited", "true", (time() + $CONFIG['index_cookie']), COOKIE_PATH);\r
-               }\r
-                elseif (!empty($_COOKIE['visited']))\r
-               {\r
-                       // Remove cookie when admin set 0 in setup\r
-                       @setcookie("visited", "", (time() - 3600), COOKIE_PATH);\r
-               }\r
-\r
-               // Template laden\r
-               LOAD_TEMPLATE("index", false, ADD_URL_DATA(""));\r
-\r
-               // Shall I insert an automated forward?\r
-               if ($CONFIG['index_delay'] > 0)\r
-               {\r
-                       // This will be a JavaScript-redirect!\r
-                       define('__DELAY_VALUE', ($CONFIG['index_delay'] * 1000 + 500));\r
-                       define('__MOD_VALUE'  , ADD_URL_DATA("index"));\r
-                       LOAD_TEMPLATE("index_forward");\r
-               }\r
-       }\r
-        else\r
-       {\r
-               // Redirect to main page\r
-               LOAD_URL(URL."/modules.php?module=index");\r
-       }\r
-\r
-       // Footer\r
-       require(PATH."inc/footer.php");\r
-}\r
- else\r
-{\r
-       // You have to configure first!\r
-       LOAD_URL("install.php");\r
-}\r
-// All done here...\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 08/25/2003 *
+ * ===============                              Last change: 11/23/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : index.php                                        *
+ * -------------------------------------------------------------------- *
+ * Short description : Index page. A simple redirection to modules.php  *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Index-Seite. Eine simple Weiterleitung auf die   *
+ *           modules.php                                                *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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                                                  *
+ ************************************************************************/
+
+// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
+require_once("inc/libs/security_functions.php");
+
+// Init "action" and "what"
+global $what, $action;
+$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
+if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
+if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
+
+// Set module
+$GLOBALS['module'] = "index";
+
+// Load config.php
+require ("inc/config.php");
+
+// Is the script installed?
+if (defined('mxchange_installed') && (mxchange_installed))
+{
+       // Header
+       require(PATH."inc/header.php");
+
+       // Check for cookies
+       if (empty($_COOKIE['visited']) || ($CONFIG['index_delay'] == 0) || ($CONFIG['index_cookie'] == 0))
+       {
+               if ($CONFIG['index_cookie'] > 0)
+               {
+                       // Set cookie and remeber it for specified time
+                       @setcookie("visited", "true", (time() + $CONFIG['index_cookie']), COOKIE_PATH);
+               }
+                elseif (!empty($_COOKIE['visited']))
+               {
+                       // Remove cookie when admin set 0 in setup
+                       @setcookie("visited", "", (time() - 3600), COOKIE_PATH);
+               }
+
+               // Template laden
+               LOAD_TEMPLATE("index", false, ADD_URL_DATA(""));
+
+               // Shall I insert an automated forward?
+               if ($CONFIG['index_delay'] > 0)
+               {
+                       // This will be a JavaScript-redirect!
+                       define('__DELAY_VALUE', ($CONFIG['index_delay'] * 1000 + 500));
+                       define('__MOD_VALUE'  , ADD_URL_DATA("index"));
+                       LOAD_TEMPLATE("index_forward");
+               }
+       }
+        else
+       {
+               // Redirect to main page
+               LOAD_URL(URL."/modules.php?module=index");
+       }
+
+       // Footer
+       require(PATH."inc/footer.php");
+}
+ else
+{
+       // You have to configure first!
+       LOAD_URL("install.php");
+}
+// All done here...
+?>