From 966f2abfe2967b7eaaa49815ed22ccb668f645f4 Mon Sep 17 00:00:00 2001 From: Ryan Boren 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: https://develop.svn.wordpress.org/trunk@3572 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-settings.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 8d0a44bdee..82600746e5 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.