Removed 2nd parameter for assert() as this is only available in PHP 5.4.8+ but Mailer...
[mailer.git] / agb.php
diff --git a/agb.php b/agb.php
index a802e0c4014ef25fce24b648fddeb0b94a512cc8..1abf0e10f4419f61c39695fa56e5892090a8ca70 100644 (file)
--- a/agb.php
+++ b/agb.php
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 11/27/2003 *
- * ===============                              Last change: 04/26/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 11/27/2003 *
+ * ===================                          Last change: 04/26/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : agb.php                                          *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Allgemeine Geschaeftsbedingungen                 *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * For more information visit: http://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 *
  * 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");
+// Load security stuff here
+require('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']);
+// Init start time
+$GLOBALS['__start_time'] = microtime(TRUE);
 
-// Set module
-$GLOBALS['module'] = "agb"; $CSS = -1;
+// Set module and output mode (raw)
+$GLOBALS['__module']      = 'agb';
+$GLOBALS['__output_mode'] = -1;
 
 // Load the required file(s)
-require ("inc/config.php");
+require('inc/config-global.php');
+
+// Set content type for e.g. search engines
+setContentType('text/html');
+
+// Simply redirect... :-)
+redirectToUrl('modules.php?module=index&amp;what=agb');
 
-// Is the script installed?
-if (defined('mxchange_installed') && (mxchange_installed))
-{
-       // Simply redirect... :-)
-       LOAD_URL(URL."/modules.php?module=index&amp;what=agb");
-       // Redirection should be done here
-}
- else
-{
-       // You have to configure first!
-       LOAD_URL(URL."/install.php");
-}
-// Really all done here... ;-)
+// [EOF]
 ?>