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:
parent
69bbd538d5
commit
3b39b2c99c
|
@ -359,7 +359,7 @@ switch ( $wp_list_table->current_action() ) {
|
||||||
?>
|
?>
|
||||||
<input type="hidden" name="delete_option" value="delete" />
|
<input type="hidden" name="delete_option" value="delete" />
|
||||||
<?php else : ?>
|
<?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>
|
<fieldset><p><legend><?php _e( 'What should be done with content owned by this user?' ); ?></legend></p>
|
||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
<fieldset><p><legend><?php _e( 'What should be done with content owned by these users?' ); ?></legend></p>
|
<fieldset><p><legend><?php _e( 'What should be done with content owned by these users?' ); ?></legend></p>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue