do not strip magicquote stuff twice from

This commit is contained in:
Andrew Dolgov 2010-02-02 22:54:40 +03:00
parent b92fbcd8a5
commit f885ff6e4b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
if (get_magic_quotes_gpc()) {
$_REQUEST = array_map('stripslashes', $_REQUEST);
$_POST = array_map('stripslashes', $_POST);
$_REQUEST = array_map('stripslashes', $_REQUEST);
// $_REQUEST = array_map('stripslashes', $_REQUEST);
$_COOKIE = array_map('stripslashes', $_COOKIE);
}