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

Follow-up to [16607], [32630], [32757], [47219].

See #54728.

git-svn-id: https://develop.svn.wordpress.org/trunk@52583 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2022-01-16 08:14:39 +00:00
parent 9603988369
commit 815759d6f3

View File

@ -400,16 +400,16 @@ class WP_MS_Users_List_Table extends WP_List_Table {
$actions['edit'] = '<a href="' . esc_url( network_admin_url( 'site-info.php?id=' . $val->userblog_id ) ) . '">' . __( 'Edit' ) . '</a>';
$class = '';
if ( 1 == $val->spam ) {
if ( 1 === (int) $val->spam ) {
$class .= 'site-spammed ';
}
if ( 1 == $val->mature ) {
if ( 1 === (int) $val->mature ) {
$class .= 'site-mature ';
}
if ( 1 == $val->deleted ) {
if ( 1 === (int) $val->deleted ) {
$class .= 'site-deleted ';
}
if ( 1 == $val->archived ) {
if ( 1 === (int) $val->archived ) {
$class .= 'site-archived ';
}