1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 23:45:55 +00:00

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

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);
}