New functions introduced, several rewrites:
[mailer.git] / inc / modules / loader.php
index 17eefbfadd88ccdf250846ed162c5a038c05be67..6224e80ba471195dd3f2cdc5a73bc716c240227e 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/29/2003 *
- * ===============                              Last change: 04/17/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/29/2003 *
+ * ===================                          Last change: 04/17/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : loader.php                                       *
@@ -17,7 +17,7 @@
  * 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 (REQUEST_ISSET_GET('url')) {
+// Is an URL specified?
+if (isGetRequestElementSet('url')) {
        // Decode URL
-       $url = decodeString(str_replace(' ', '+', compileUriCode(urldecode(REQUEST_GET('url')))));
+       $url = decodeString(str_replace(' ', '+', compileUriCode(urldecode(getRequestElement('url')))));
 
        // Validate the URL
        if (isUrlValid($url)) {
-               // Prepare data for the template
-               define('__URL', $url);
-
                // Generate a JavaScript that redirects us
-               LOAD_TEMPLATE('loader');
+               loadTemplate('loader', false, $url);
        } else {
                // URL invalid
                redirectToUrl('index.php');
@@ -62,5 +59,5 @@ if (REQUEST_ISSET_GET('url')) {
        redirectToUrl('index.php');
 }
 
-//
+// [EOF]
 ?>