From be1f99d329ced8c250f9e5757cfa11f2eb2d22c1 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 28 Feb 2006 01:52:59 +0000 Subject: [PATCH] _SERVER is not escaped by magic_quotes_gpc so don't strip it. git-svn-id: http://svn.automattic.com/wordpress/trunk@3572 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 8d0a44bde..82600746e 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -192,7 +192,6 @@ if ( get_magic_quotes_gpc() ) { $_GET = stripslashes_deep($_GET ); $_POST = stripslashes_deep($_POST ); $_COOKIE = stripslashes_deep($_COOKIE); - $_SERVER = stripslashes_deep($_SERVER); } // Escape with wpdb.