]> git.wh0rd.org - tt-rss.git/commitdiff
do not strip magicquote stuff twice from
authorAndrew Dolgov <fox@bah.org.ru>
Tue, 2 Feb 2010 19:54:40 +0000 (22:54 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Tue, 2 Feb 2010 19:54:40 +0000 (22:54 +0300)
backend.php

index a87195c444a79c5235ba3ffd34254a3c36c25e28..37c79412ee8b5f1f55f1356185890344cb8e7413 100644 (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);
        }