mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
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:
parent
1dbf6d7bec
commit
e2e696ea33
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user