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:
Andrew Nacin 2010-04-03 08:08:12 +00:00
parent fcc6a27750
commit b4ae4c89e9
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ function add_user() {
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
$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.'));
$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
$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.'));
}

View File

@ -57,7 +57,7 @@ case 'promote':
}
$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.'));
$userids = $_REQUEST['users'];