Make WordPress Core

Ticket #16860: user-new.diff

File user-new.diff, 2.9 KB (added by daniellandau, 10 years ago)

Show the "no confirmation" checkbox when user can manage_network_users

  • 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>