Multisite: Introduce a singular string for user removal (we already have one for deletion).

props pavelevap.
fixes #32387.
Built from https://develop.svn.wordpress.org/trunk@33434


git-svn-id: http://core.svn.wordpress.org/trunk@33401 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-07-26 23:19:24 +00:00
parent fbd8a43b5d
commit a883227772
2 changed files with 8 additions and 2 deletions

View File

@ -337,7 +337,13 @@ case 'remove':
<div class="wrap">
<h1><?php _e( 'Remove Users from Site' ); ?></h1>
<p><?php _e('You have specified these users for removal:'); ?></p>
<?php if ( 1 == count( $userids ) ) : ?>
<p><?php _e( 'You have specified this user for removal:' ); ?></p>
<?php else : ?>
<p><?php _e( 'You have specified these users for removal:' ); ?></p>
<?php endif; ?>
<ul>
<?php
$go_remove = false;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta4-33433';
$wp_version = '4.3-beta4-33434';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.