X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Floader.php;h=217b4426fa244415ac3273eab8f5daa6c831233d;hb=7fabfadce30a7bea7ce3ad1f1e2e7e5e616f2669;hp=7a1f7cc08634fb320914f6bb7c7f7b3c83aa7540;hpb=7b0f17cd637e388049d2167811e4332cec1e979b;p=mailer.git diff --git a/inc/modules/loader.php b/inc/modules/loader.php index 7a1f7cc086..217b4426fa 100644 --- a/inc/modules/loader.php +++ b/inc/modules/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 * @@ -38,21 +38,18 @@ // 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] ?>