User is_super_admin(). Props ocean90. fixes #12888

git-svn-id: https://develop.svn.wordpress.org/trunk@14032 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-04-07 15:28:10 +00:00
parent 96ea328c0a
commit e53c2d4da4
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ function edit_user( $user_id = 0 ) {
$potential_role = isset($wp_roles->role_objects[$new_role]) ? $wp_roles->role_objects[$new_role] : false;
// Don't let anyone with 'edit_users' (admins) edit their own role to something without it.
// Multisite super admins can freely edit their blog roles -- they possess all caps.
if ( ( is_multisite() && is_site_admin() ) || $user_id != $current_user->id || ($potential_role && $potential_role->has_cap( 'edit_users' ) ) )
if ( ( is_multisite() && is_super_admin() ) || $user_id != $current_user->id || ($potential_role && $potential_role->has_cap( 'edit_users' ) ) )
$user->role = $new_role;
// If the new role isn't editable by the logged-in user die with error

View File

@ -101,7 +101,7 @@ endif;
* @deprecated Use $GLOBALS['current_user']->ID
*/
function get_current_user_id() {
_deprecated_function( __FUNCTION__, '3.0', '$GLOBALS\'current_user\']->ID' );
_deprecated_function( __FUNCTION__, '3.0', '$GLOBALS[\'current_user\']->ID' );
return $GLOBALS['current_user']->ID;
}