From 98402b7c15a47d908f5d4f90ab628dcf237e2a69 Mon Sep 17 00:00:00 2001 From: Andrea Fercia Date: Sun, 7 May 2017 12:01:42 +0000 Subject: [PATCH] Administration: Restore missing spinner when installing a new language. Fixes #40478. Built from https://develop.svn.wordpress.org/trunk@40579 git-svn-id: http://core.svn.wordpress.org/trunk@40449 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ms.php | 2 +- wp-admin/includes/options.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/ms.php b/wp-admin/includes/ms.php index 939d0d08b7..142aaee5f0 100644 --- a/wp-admin/includes/ms.php +++ b/wp-admin/includes/ms.php @@ -1050,7 +1050,7 @@ jQuery(document).ready( function($) { // Don't show a spinner for English and installed languages, // as there is nothing to download. if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) { - $( '#submit', this ).after( '' ); + $( '#submit', this ).after( '' ); } }); }); diff --git a/wp-admin/includes/options.php b/wp-admin/includes/options.php index 14c175de23..a085a4ad5c 100644 --- a/wp-admin/includes/options.php +++ b/wp-admin/includes/options.php @@ -78,7 +78,7 @@ function options_general_add_js() { // Don't show a spinner for English and installed languages, // as there is nothing to download. if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) { - $( '#submit', this ).after( '' ); + $( '#submit', this ).after( '' ); } }); }); diff --git a/wp-includes/version.php b/wp-includes/version.php index 8db13c80a6..0957398dae 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40578'; +$wp_version = '4.8-alpha-40579'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.