Allow "No role for this blog" to be chosen on user-edit. Add defensive checks for a few potential notices. fixes #10833
git-svn-id: https://develop.svn.wordpress.org/trunk@13961 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
fcc6a27750
commit
b4ae4c89e9
@ -30,7 +30,7 @@ function add_user() {
|
|||||||
if ( $user_id != $current_user->id || $wp_roles->role_objects[$new_role]->has_cap( 'edit_users' ) ) {
|
if ( $user_id != $current_user->id || $wp_roles->role_objects[$new_role]->has_cap( 'edit_users' ) ) {
|
||||||
// If the new role isn't editable by the logged-in user die with error
|
// If the new role isn't editable by the logged-in user die with error
|
||||||
$editable_roles = get_editable_roles();
|
$editable_roles = get_editable_roles();
|
||||||
if ( !$editable_roles[$new_role] )
|
if ( empty( $editable_roles[$new_role] ) )
|
||||||
wp_die(__('You can’t give users that role.'));
|
wp_die(__('You can’t give users that role.'));
|
||||||
|
|
||||||
$user = new WP_User( $user_id );
|
$user = new WP_User( $user_id );
|
||||||
@ -84,7 +84,7 @@ function edit_user( $user_id = 0 ) {
|
|||||||
|
|
||||||
// If the new role isn't editable by the logged-in user die with error
|
// If the new role isn't editable by the logged-in user die with error
|
||||||
$editable_roles = get_editable_roles();
|
$editable_roles = get_editable_roles();
|
||||||
if ( !$editable_roles[$new_role] )
|
if ( ! empty( $new_role ) && empty( $editable_roles[$new_role] ) )
|
||||||
wp_die(__('You can’t give users that role.'));
|
wp_die(__('You can’t give users that role.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ case 'promote':
|
|||||||
}
|
}
|
||||||
|
|
||||||
$editable_roles = get_editable_roles();
|
$editable_roles = get_editable_roles();
|
||||||
if ( !$editable_roles[$_REQUEST['new_role']] )
|
if ( empty( $editable_roles[$_REQUEST['new_role']] ) )
|
||||||
wp_die(__('You can’t give users that role.'));
|
wp_die(__('You can’t give users that role.'));
|
||||||
|
|
||||||
$userids = $_REQUEST['users'];
|
$userids = $_REQUEST['users'];
|
||||||
|
Loading…
Reference in New Issue
Block a user