Changeset 52583
- Timestamp:
- 01/16/2022 08:14:39 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r51737 r52583 401 401 402 402 $class = ''; 403 if ( 1 == $val->spam ) {403 if ( 1 === (int) $val->spam ) { 404 404 $class .= 'site-spammed '; 405 405 } 406 if ( 1 == $val->mature ) {406 if ( 1 === (int) $val->mature ) { 407 407 $class .= 'site-mature '; 408 408 } 409 if ( 1 == $val->deleted ) {409 if ( 1 === (int) $val->deleted ) { 410 410 $class .= 'site-deleted '; 411 411 } 412 if ( 1 == $val->archived ) {412 if ( 1 === (int) $val->archived ) { 413 413 $class .= 'site-archived '; 414 414 }
Note: See TracChangeset
for help on using the changeset viewer.