Make WordPress Core

Ticket #55501: 55501.patch

File 55501.patch, 1.0 KB (added by jariwalasagar, 4 years ago)

Applied patch for this ticket.

  • src/wp-admin/includes/ms.php

     
    10171017                // as there is nothing to download.
    10181018                if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
    10191019                        $( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
     1020                        $( '#submit', this ).attr( 'disabled', true );
    10201021                }
    10211022        });
    10221023} );
  • src/wp-admin/includes/options.php

     
    9494                        // as there is nothing to download.
    9595                        if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
    9696                                $( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
     97                                $( '#submit', this ).attr( 'disabled', true );
    9798                        }
    9899                });
    99100        } );