diff --git a/wp-includes/load.php b/wp-includes/load.php index cd667734b4..8e1f351115 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -867,7 +867,7 @@ function wp_load_translations_early() { // Translation and localization require_once ABSPATH . WPINC . '/pomo/mo.php'; require_once ABSPATH . WPINC . '/l10n.php'; - require_once ABSPATH . WPINC . '/locale.php'; + require_once ABSPATH . WPINC . '/class-wp-locale.php'; // General libraries require_once ABSPATH . WPINC . '/plugin.php'; @@ -1077,4 +1077,4 @@ function is_wp_error( $thing ) { function get_current_site() { global $current_site; return $current_site; -} \ No newline at end of file +} diff --git a/wp-includes/version.php b/wp-includes/version.php index 4d8fdcfac3..30a505aef9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38403'; +$wp_version = '4.7-alpha-38404'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.