Make WordPress Core


Ignore:
Timestamp:
07/09/2023 07:50:52 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.

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-plugins-list-table.php

    r56068 r56174  
    262262            } elseif ( ( ! $screen->in_admin( 'network' ) && is_plugin_active( $plugin_file ) )
    263263                || ( $screen->in_admin( 'network' ) && is_plugin_active_for_network( $plugin_file ) ) ) {
    264                 // On the non-network screen, populate the active list with plugins that are individually activated.
    265                 // On the network admin screen, populate the active list with plugins that are network-activated.
     264                /*
     265                 * On the non-network screen, populate the active list with plugins that are individually activated.
     266                 * On the network admin screen, populate the active list with plugins that are network-activated.
     267                 */
    266268                $plugins['active'][ $plugin_file ] = $plugin_data;
    267269
Note: See TracChangeset for help on using the changeset viewer.