diff --git a/base.php b/base.php index 3f8422a..8750392 100644 --- a/base.php +++ b/base.php @@ -51,4 +51,9 @@ if(get_magic_quotes_gpc()) { $var = stripslashes($var); } + + foreach($_GET as &$var) + { + $var = stripslashes($var); + } }