From f885ff6e4b50b23979848d8773739be97b329ea4 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 2 Feb 2010 22:54:40 +0300 Subject: [PATCH] do not strip magicquote stuff twice from --- backend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5