Compilation time added, some compileCode() calles removed, ADMIN_WHAT_404 added
[mailer.git] / inc / modules / loader.php
index ab8533a79b1382f876e8bcade550e6bd6a1a04df..217b4426fa244415ac3273eab8f5daa6c831233d 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Referrer neu setzen                              *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+       die();
+} // END - if
 
-if (!empty($_GET['url'])) {
+// Is an URL specified?
+if (isGetRequestElementSet('url')) {
        // Decode URL
-       $url = gzuncompress(base64_decode(str_replace(" ", "+", COMPILE_CODE(urldecode($_GET['url'])))));
+       $url = decodeString(str_replace(' ', '+', compileUriCode(urldecode(getRequestElement('url')))));
 
        // Validate the URL
-       if (VALIDATE_URL($url)) {
-               // Prepare data for the template
-               define('__URL', $url);
-
+       if (isUrlValid($url)) {
                // Generate a JavaScript that redirects us
-               LOAD_TEMPLATE("loader");
+               loadTemplate('loader', false, $url);
        } else {
                // URL invalid
-               LOAD_URL("index.php");
+               redirectToUrl('index.php');
        }
 } else {
        // Invalid or no URL entered!
-       LOAD_URL("index.php");
+       redirectToUrl('index.php');
 }
 
-//
+// [EOF]
 ?>