diff --git a/wp-admin/users.php b/wp-admin/users.php index bab7ad5196..94d891ae0c 100644 --- a/wp-admin/users.php +++ b/wp-admin/users.php @@ -256,7 +256,7 @@ switch ( $wp_list_table->current_action() ) { // Send the password reset link. $user = get_userdata( $id ); - if ( retrieve_password( $user->user_login ) ) { + if ( true === retrieve_password( $user->user_login ) ) { ++$reset_count; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index c15fa9b0ca..67a1a3d754 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-beta4-56936'; +$wp_version = '6.4-beta4-56937'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.