From b2d13224ec5e70732485c321f851bf26791d599b Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 10 Apr 2013 07:57:58 +0000 Subject: [PATCH] No longer need to work around zend_hash_del_key_or_index bug. fixes #24029. see [4717] git-svn-id: http://core.svn.wordpress.org/trunk@23947 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/load.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-includes/load.php b/wp-includes/load.php index 8a949629fe..55bb6dfac8 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -27,7 +27,6 @@ function wp_unregister_GLOBALS() { $input = array_merge( $_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset( $_SESSION ) && is_array( $_SESSION ) ? $_SESSION : array() ); foreach ( $input as $k => $v ) if ( !in_array( $k, $no_unset ) && isset( $GLOBALS[$k] ) ) { - $GLOBALS[$k] = null; unset( $GLOBALS[$k] ); } }