From 4917e5b375da8f2fe6561890e6c4c2c16ac4ecde Mon Sep 17 00:00:00 2001 From: dd32 Date: Sat, 6 Mar 2010 05:53:20 +0000 Subject: [PATCH] Coding Standards: no camelcase variables, use lowercase for variables. Props hakre. Fixes #12519 git-svn-id: http://svn.automattic.com/wordpress/trunk@13598 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/load.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/load.php b/wp-includes/load.php index 46643994e..98e51d12d 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -20,12 +20,12 @@ function wp_unregister_GLOBALS() { die( /*WP_I18N_GLOBALS_OVERWRITE*/'GLOBALS overwrite attempt detected'/*/WP_I18N_GLOBALS_OVERWRITE*/ ); // Variables that shouldn't be unset - $noUnset = array( 'GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix' ); + $no_unset = array( 'GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix' ); $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, $noUnset ) && isset( $GLOBALS[$k] ) ) { - $GLOBALS[$k] = NULL; + if ( !in_array( $k, $no_unset ) && isset( $GLOBALS[$k] ) ) { + $GLOBALS[$k] = null; unset( $GLOBALS[$k] ); } }