X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=0.2.1%2Findex.php;h=05dcbe8428837836082f8d3237342d7a4d4fc6b2;hp=a5d13f3178842951c870a9a8aff0ca93c3b62187;hb=157ee010917df5ca07e6d31b42f67417b2516d74;hpb=4696b799ced069ba2a264fa3b38fc033e3dc31dc diff --git a/0.2.1/index.php b/0.2.1/index.php index a5d13f3178..05dcbe8428 100644 --- a/0.2.1/index.php +++ b/0.2.1/index.php @@ -13,7 +13,7 @@ * -------------------------------------------------------------------- * * * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2007 by Roland Haeder * + * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,8 +38,8 @@ require_once("inc/libs/security_functions.php"); // Init "action" and "what" global $what, $action; $GLOBALS['what'] = ""; $GLOBALS['action'] = ""; -if (!empty($_GET['action'])) $GLOBALS['action'] = trim(strip_tags($_GET['action'])); -if (!empty($_GET['what'])) $GLOBALS['what'] = trim(strip_tags($_GET['what'])); +if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']); +if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']); // Set module $GLOBALS['module'] = "index";