Coding Standards: Use strict comparison in wp-admin/users.php.

Follow-up to [10990], [11162], [11217], [37059], [55592], [55622].
Props faisalahammad.
Fixes #58040.


git-svn-id: https://develop.svn.wordpress.org/trunk@55623 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras 2023-04-04 21:10:19 +00:00
parent 1dbf6d7bec
commit e2e696ea33

View File

@ -359,7 +359,7 @@ switch ( $wp_list_table->current_action() ) {
?>
<input type="hidden" name="delete_option" value="delete" />
<?php else : ?>
<?php if ( 1 == $go_delete ) : ?>
<?php if ( 1 === $go_delete ) : ?>
<fieldset><p><legend><?php _e( 'What should be done with content owned by this user?' ); ?></legend></p>
<?php else : ?>
<fieldset><p><legend><?php _e( 'What should be done with content owned by these users?' ); ?></legend></p>