Make WordPress Core

Changeset 48968


Ignore:
Timestamp:
09/10/2020 02:20:08 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison in wp-admin/includes/class-wp-plugins-list-table.php.

See #50767.

File:
1 edited

Legend:

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

    r48820 r48968  
    388388        $b = $plugin_b[ $orderby ];
    389389
    390         if ( $a == $b ) {
     390        if ( $a === $b ) {
    391391            return 0;
    392392        }
     
    746746            $dropins     = _get_dropins();
    747747            $plugin_name = $plugin_file;
    748             if ( $plugin_file != $plugin_data['Name'] ) {
     748
     749            if ( $plugin_file !== $plugin_data['Name'] ) {
    749750                $plugin_name .= '<br/>' . $plugin_data['Name'];
    750751            }
     752
    751753            if ( true === ( $dropins[ $plugin_file ][1] ) ) { // Doesn't require a constant.
    752754                $is_active   = true;
     
    765767                    ) . '</p>';
    766768            }
     769
    767770            if ( $plugin_data['Description'] ) {
    768771                $description .= '<p>' . $plugin_data['Description'] . '</p>';
     
    948951        $class          = $is_active ? 'active' : 'inactive';
    949952        $checkbox_id    = 'checkbox_' . md5( $plugin_data['Name'] );
     953
    950954        if ( $restrict_network_active || $restrict_network_only || in_array( $status, array( 'mustuse', 'dropins' ), true ) || ! $compatible_php ) {
    951955            $checkbox = '';
     
    960964            );
    961965        }
     966
    962967        if ( 'dropins' !== $context ) {
    963968            $description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
     
    11251130                    $url = add_query_arg( $query_args, 'plugins.php' );
    11261131
    1127                     if ( 'unavailable' == $action ) {
     1132                    if ( 'unavailable' === $action ) {
    11281133                        $html[] = '<span class="label">' . $text . '</span>';
    11291134                    } else {
Note: See TracChangeset for help on using the changeset viewer.