X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Floader.php;h=7a1f7cc08634fb320914f6bb7c7f7b3c83aa7540;hp=c8c62dd35373784fad8d46b2215ef99ca93951ba;hb=7b0f17cd637e388049d2167811e4332cec1e979b;hpb=a05706f3f5f5e6ae26c2114d2fd3ede01d5fe093 diff --git a/inc/modules/loader.php b/inc/modules/loader.php index c8c62dd353..7a1f7cc086 100644 --- a/inc/modules/loader.php +++ b/inc/modules/loader.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * 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 * * For more information visit: http://www.mxchange.org * @@ -32,29 +37,29 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; +if (!defined('__SECURITY')) { + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } -if (!empty($_GET['url'])) { +if (REQUEST_ISSET_GET(('url'))) { // Decode URL - $url = COMPILE_CODE(@gzuncompress(base64_decode(urldecode($_GET['url'])))); + $url = decodeString(str_replace(' ', '+', compileUriCode(urldecode(REQUEST_GET('url'))))); // Validate the URL - if (VALIDATE_URL($url)) { + if (isUrlValid($url)) { // Prepare data for the template define('__URL', $url); // Generate a JavaScript that redirects us - LOAD_TEMPLATE("loader"); + LOAD_TEMPLATE('loader'); } else { // URL invalid - LOAD_URL("index.php"); + redirectToUrl('index.php'); } } else { // Invalid or no URL entered! - LOAD_URL("index.php"); + redirectToUrl('index.php'); } //