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
+1 -1
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'];