From 3ffb57a4f80db965c9dc2ca7b84e839eaa14a2c5 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 26 Jan 2010 18:20:27 +0000 Subject: [PATCH] unset temp vars so they don't pollute the global namespace. git-svn-id: http://svn.automattic.com/wordpress/trunk@12847 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-settings.php b/wp-settings.php index 7a5519ad6..e34bfea7e 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -161,6 +161,7 @@ if ( is_multisite() ) { require_once( $file ); die(); } + unset($file); ms_network_cookies(); } @@ -248,6 +249,7 @@ $locale = get_locale(); $locale_file = WP_LANG_DIR . "/$locale.php"; if ( is_readable( $locale_file ) ) require_once( $locale_file ); +unset($locale_file); // Pull in locale data after loading text domain. require_once( ABSPATH . WPINC . '/locale.php' );