From b66c98e979b2513280d974ce602f3a3784ac8074 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 28 Feb 2006 21:50:06 +0000 Subject: [PATCH] _SERVER is not escaped by magic_quotes_gpc so don't strip it. git-svn-id: http://svn.automattic.com/wordpress/branches/2.0@3580 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 afb3f33744..312c52e18d 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -190,7 +190,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.