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/ms.php

    r55753 r56176  
    10061006    var languageSelect = $( '#WPLANG' );
    10071007    $( 'form' ).on( 'submit', function() {
    1008         // Don't show a spinner for English and installed languages,
    1009         // as there is nothing to download.
     1008        /*
     1009         * Don't show a spinner for English and installed languages,
     1010         * as there is nothing to download.
     1011         */
    10101012        if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
    10111013            $( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
Note: See TracChangeset for help on using the changeset viewer.