X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Floader.php;h=17eefbfadd88ccdf250846ed162c5a038c05be67;hp=20ad346fa3722279fec1de95c7118da3a03a453d;hb=f928ad2bed60fa256d0641eaf6d2c027a2944688;hpb=508228c85fba8448d00865b1639cb8cd7a69e457 diff --git a/inc/modules/loader.php b/inc/modules/loader.php index 20ad346fa3..17eefbfadd 100644 --- a/inc/modules/loader.php +++ b/inc/modules/loader.php @@ -10,7 +10,7 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Referrer neu setzen * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * + * $Revision:: $ * * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * @@ -38,28 +38,28 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } -if (REQUEST_ISSET_GET(('url'))) { +if (REQUEST_ISSET_GET('url')) { // Decode URL - $url = decodeString(str_replace(" ", "+", compileUriCode(urldecode(REQUEST_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'); } //