Make WordPress Core

Ticket #16860: joined.diff

File joined.diff, 3.9 KB (added by daniellandau, 9 years ago)

a single patch containing all modifications

  • src/wp-admin/media-upload.php

     
    100100         */
    101101        do_action( "media_upload_$tab" );
    102102}
    103 
  • src/wp-admin/user-new.php

     
    6565        if ( ( $username != null && !is_super_admin( $user_id ) ) && ( array_key_exists($blog_id, get_blogs_of_user($user_id)) ) ) {
    6666                $redirect = add_query_arg( array('update' => 'addexisting'), 'user-new.php' );
    6767        } else {
    68                 if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
     68                if ( isset( $_POST[ 'noconfirmation' ] ) && current_user_can( 'manage_network_users' ) ) {
    6969                        add_existing_user_to_blog( array( 'user_id' => $user_id, 'role' => $_REQUEST[ 'role' ] ) );
    7070                        $redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
    7171                } else {
     
    122122                         * @param string $user_login The sanitized username.
    123123                         */
    124124                        $new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) );
    125                         if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
     125                        if ( isset( $_POST[ 'noconfirmation' ] ) && current_user_can( 'manage_network_users' ) ) {
    126126                                add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email
    127127                                add_filter( 'wpmu_welcome_user_notification', '__return_false' ); // Disable welcome email
    128128                        }
    129129                        wpmu_signup_user( $new_user_login, $new_user_email, array( 'add_to_blog' => $wpdb->blogid, 'new_role' => $_REQUEST['role'] ) );
    130                         if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
     130                        if ( isset( $_POST[ 'noconfirmation' ] ) && current_user_can( 'manage_network_users' ) ) {
    131131                                $key = $wpdb->get_var( $wpdb->prepare( "SELECT activation_key FROM {$wpdb->signups} WHERE user_login = %s AND user_email = %s", $new_user_login, $new_user_email ) );
    132132                                wpmu_activate_signup( $key );
    133133                                $redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
     
    303303                        </select>
    304304                </td>
    305305        </tr>
    306 <?php if ( is_super_admin() ) { ?>
     306<?php if ( current_user_can( 'manage_network_users' ) ) { ?>
    307307        <tr>
    308308                <th scope="row"><label for="adduser-noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
    309309                <td><label for="adduser-noconfirmation"><input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" /> <?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label></td>
     
    418418                        </select>
    419419                </td>
    420420        </tr>
    421         <?php if ( is_multisite() && is_super_admin() ) { ?>
     421        <?php if ( is_multisite() && current_user_can( 'manage_network_users' ) ) { ?>
    422422        <tr>
    423423                <th scope="row"><label for="noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
    424424                <td><label for="noconfirmation"><input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> /> <?php _e( 'Add the user without sending an email that requires their confirmation.' ); ?></label></td>
  • src/wp-includes/capabilities.php

     
    10901090                if ( 'edit_user' == $cap && isset( $args[0] ) && $user_id == $args[0] )
    10911091                        break;
    10921092
    1093                 // If multisite these caps are allowed only for super admins.
    1094                 if ( is_multisite() && !is_super_admin( $user_id ) )
     1093                // If multisite these caps are allowed only if user can manage_network_users.
     1094                if ( is_multisite() && !user_can( $user_id, 'manage_network_users' ) )
    10951095                        $caps[] = 'do_not_allow';
    10961096                else
    10971097                        $caps[] = 'edit_users'; // edit_user maps to edit_users.