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:
parent
fbd8a43b5d
commit
a883227772
|
@ -337,7 +337,13 @@ case 'remove':
|
||||||
|
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<h1><?php _e( 'Remove Users from Site' ); ?></h1>
|
<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>
|
<ul>
|
||||||
<?php
|
<?php
|
||||||
$go_remove = false;
|
$go_remove = false;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue