Fixed logfile writing in installation phase, .revision is now ignored
[mailer.git] / inc / modules / loader.php
index 96e1bc8a3ae42ef25b01957d47026bad6b1f432a..260bd598b789a70d2df30f3175f64e9c68153474 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Referrer neu setzen                              *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision:: 856                                                    $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: stelzi                                                   $ *
+ * 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                           *
  * For more information visit: http://www.mxchange.org                  *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
-{
+if (!defined('__SECURITY')) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
 
-if (!empty($_GET['url']))
-{
-       $url = base64_decode(urldecode(COMPILE_CODE($_GET['url'])));
-       if (VALIDATE_URL($url))
-       {
+if (REQUEST_ISSET_GET(('url'))) {
+       // Decode URL
+       $url = decodeString(str_replace(" ", "+", compileUriCode(urldecode(REQUEST_GET('url')))));
+
+       // Validate the URL
+       if (VALIDATE_URL($url)) {
                // Prepare data for the template
                define('__URL', $url);
 
                // Generate a JavaScript that redirects us
                LOAD_TEMPLATE("loader");
-       }
-        else
-       {
+       } else {
                // URL invalid
                LOAD_URL("index.php");
        }
-}
- else
-{
+} else {
        // Invalid or no URL entered!
        LOAD_URL("index.php");
 }
+
 //
 ?>