Make WordPress Core


Ignore:
Timestamp:
07/09/2023 08:05:43 PM (17 months ago)
Author:
audrasjb
Message:

Docs: Replace multiple single line comments with multi-line comments.

This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.

Follow-up to [56174], [56175].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/options.php

    r55414 r56176  
    9191        var languageSelect = $( '#WPLANG' );
    9292        $( 'form' ).on( 'submit', function() {
    93             // Don't show a spinner for English and installed languages,
    94             // as there is nothing to download.
     93            /*
     94             * Don't show a spinner for English and installed languages,
     95             * as there is nothing to download.
     96             */
    9597            if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
    9698                $( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
Note: See TracChangeset for help on using the changeset viewer.