From 9342b419fa09c2cf051dde78d2c29b1b0ae5da1c Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 9 Nov 2011 12:10:28 +0100 Subject: [PATCH] Little speed enhancement --- htdocs/main.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/main.inc.php b/htdocs/main.inc.php index 19ff6392f41..1ef1fb6b919 100644 --- a/htdocs/main.inc.php +++ b/htdocs/main.inc.php @@ -58,7 +58,7 @@ if (function_exists('get_magic_quotes_gpc')) // magic_quotes_* removed in PHP6 } $_GET = array_map('stripslashes_deep', $_GET); $_POST = array_map('stripslashes_deep', $_POST); - $_COOKIE = array_map('stripslashes_deep', $_COOKIE); + //$_COOKIE = array_map('stripslashes_deep', $_COOKIE); // Useless because a cookie should never be outputed on screen nor used into sql @set_magic_quotes_runtime(0); } }