Make WordPress Core

Changeset 14032


Ignore:
Timestamp:
04/07/2010 03:28:10 PM (15 years ago)
Author:
ryan
Message:

User is_super_admin(). Props ocean90. fixes #12888

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/user.php

    r13961 r14032  
    8080        // Don't let anyone with 'edit_users' (admins) edit their own role to something without it.
    8181        // Multisite super admins can freely edit their blog roles -- they possess all caps.
    82         if ( ( is_multisite() && is_site_admin() ) || $user_id != $current_user->id || ($potential_role && $potential_role->has_cap( 'edit_users' ) ) )
     82        if ( ( is_multisite() && is_super_admin() ) || $user_id != $current_user->id || ($potential_role && $potential_role->has_cap( 'edit_users' ) ) )
    8383            $user->role = $new_role;
    8484
  • trunk/wp-includes/ms-deprecated.php

    r13998 r14032  
    102102 */
    103103function get_current_user_id() {
    104     _deprecated_function( __FUNCTION__, '3.0', '$GLOBALS\'current_user\']->ID' );
     104    _deprecated_function( __FUNCTION__, '3.0', '$GLOBALS[\'current_user\']->ID' );
    105105    return $GLOBALS['current_user']->ID;
    106106}
Note: See TracChangeset for help on using the changeset viewer.