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

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

Built from https://develop.svn.wordpress.org/trunk@55623


git-svn-id: http://core.svn.wordpress.org/trunk@55135 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
audrasjb 2023-04-04 21:12:24 +00:00
parent 69bbd538d5
commit 3b39b2c99c
2 changed files with 2 additions and 2 deletions

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>

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.3-alpha-55622';
$wp_version = '6.3-alpha-55623';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.