diff --git a/wp-admin/network/users.php b/wp-admin/network/users.php index 7cfdf190c2..650c3ca089 100644 --- a/wp-admin/network/users.php +++ b/wp-admin/network/users.php @@ -18,34 +18,46 @@ if ( ! current_user_can( 'manage_network_users' ) ) function confirm_delete_users( $users ) { $current_user = wp_get_current_user(); - if ( !is_array( $users ) ) + if ( ! is_array( $users ) || empty( $users ) ) { return false; + } ?>
- + + 1 ) : ?> + + + + + diff --git a/wp-includes/version.php b/wp-includes/version.php index 5f6b218e0a..a552c7ae93 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31655'; +$wp_version = '4.2-alpha-31656'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.