Make `$wp_local_package` explicitly global in wp-settings.php.

Props danielbachhuber.
Fixes #34975.
Built from https://develop.svn.wordpress.org/trunk@36557


git-svn-id: http://core.svn.wordpress.org/trunk@36524 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2016-02-17 19:32:25 +00:00
parent 309ea2f138
commit d1d90a3263
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-alpha-36556';
$wp_version = '4.5-alpha-36557';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -26,7 +26,7 @@ require( ABSPATH . WPINC . '/default-constants.php' );
* we're including version.php from another install and don't want
* these values to be overridden if already set.
*/
global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_mysql_version;
global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_mysql_version, $wp_local_package;
require( ABSPATH . WPINC . '/version.php' );
/**