X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Floader.php;h=217b4426fa244415ac3273eab8f5daa6c831233d;hb=a975001c8e332a6af3513ea57e9acebeaadf1640;hp=96e1bc8a3ae42ef25b01957d47026bad6b1f432a;hpb=60494e212a67fe360bfbb481eb4928480a6f379b;p=mailer.git diff --git a/inc/modules/loader.php b/inc/modules/loader.php index 96e1bc8a3a..217b4426fa 100644 --- a/inc/modules/loader.php +++ b/inc/modules/loader.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * 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 * @@ -32,33 +37,27 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} +if (!defined('__SECURITY')) { + die(); +} // END - if -if (!empty($_GET['url'])) -{ - $url = base64_decode(urldecode(COMPILE_CODE($_GET['url']))); - if (VALIDATE_URL($url)) - { - // Prepare data for the template - define('__URL', $url); +// Is an URL specified? +if (isGetRequestElementSet('url')) { + // Decode URL + $url = decodeString(str_replace(' ', '+', compileUriCode(urldecode(getRequestElement('url'))))); + // Validate the URL + if (isUrlValid($url)) { // Generate a JavaScript that redirects us - LOAD_TEMPLATE("loader"); - } - else - { + loadTemplate('loader', false, $url); + } else { // URL invalid - LOAD_URL("index.php"); + redirectToUrl('index.php'); } -} - else -{ +} else { // Invalid or no URL entered! - LOAD_URL("index.php"); + redirectToUrl('index.php'); } -// + +// [EOF] ?>