From: Andrew Dolgov Date: Tue, 2 Feb 2010 19:54:40 +0000 (+0300) Subject: do not strip magicquote stuff twice from X-Git-Tag: 1.4.1~25 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f885ff6e4b50b23979848d8773739be97b329ea4;p=tt-rss.git do not strip magicquote stuff twice from --- diff --git a/backend.php b/backend.php index a87195c4..37c79412 100644 --- a/backend.php +++ b/backend.php @@ -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); }