Disallow and hide user removal (as opposed to deletion) for single site installs. Removal is a multisite concept. Props nacin. fixes #16501 for trunk
git-svn-id: http://svn.automattic.com/wordpress/trunk@17439 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6a8ff66305
commit
19afce5e23
|
@ -121,10 +121,13 @@ class WP_Users_List_Table extends WP_List_Table {
|
|||
function get_bulk_actions() {
|
||||
$actions = array();
|
||||
|
||||
if ( !is_multisite() && current_user_can( 'delete_users' ) )
|
||||
$actions['delete'] = __( 'Delete' );
|
||||
else
|
||||
if ( is_multisite() ) {
|
||||
if ( current_user_can( 'remove_users' ) )
|
||||
$actions['remove'] = __( 'Remove' );
|
||||
} else {
|
||||
if ( current_user_can( 'delete_users' ) )
|
||||
$actions['delete'] = __( 'Delete' );
|
||||
}
|
||||
|
||||
return $actions;
|
||||
}
|
||||
|
|
|
@ -200,13 +200,16 @@ break;
|
|||
case 'doremove':
|
||||
check_admin_referer('remove-users');
|
||||
|
||||
if ( ! is_multisite() )
|
||||
wp_die( __( 'You can’t remove users.' ) );
|
||||
|
||||
if ( empty($_REQUEST['users']) ) {
|
||||
wp_redirect($redirect);
|
||||
exit;
|
||||
}
|
||||
|
||||
if ( !current_user_can('remove_users') )
|
||||
die(__('You can’t remove users.'));
|
||||
if ( ! current_user_can( 'remove_users' ) )
|
||||
wp_die( __( 'You can’t remove users.' ) );
|
||||
|
||||
$userids = $_REQUEST['users'];
|
||||
|
||||
|
@ -234,6 +237,9 @@ case 'remove':
|
|||
|
||||
check_admin_referer('bulk-users');
|
||||
|
||||
if ( ! is_multisite() )
|
||||
wp_die( __( 'You can’t remove users.' ) );
|
||||
|
||||
if ( empty($_REQUEST['users']) && empty($_REQUEST['user']) ) {
|
||||
wp_redirect($redirect);
|
||||
exit();
|
||||
|
|
Loading…
Reference in New Issue