Make WordPress Core

Ticket #22277: 22277.patch

File 22277.patch, 2.7 KB (added by SergeyBiryukov, 12 years ago)
  • wp-admin/user-new.php

     
    6868        if ( ( $username != null && !is_super_admin( $user_id ) ) && ( array_key_exists($blog_id, get_blogs_of_user($user_id)) ) ) {
    6969                $redirect = add_query_arg( array('update' => 'addexisting'), 'user-new.php' );
    7070        } else {
    71                 if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
     71                if ( isset( $_POST[ 'noconfirmation' ] ) ) {
    7272                        add_existing_user_to_blog( array( 'user_id' => $user_id, 'role' => $_REQUEST[ 'role' ] ) );
    7373                        $redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
    7474                } else {
     
    118118                        $add_user_errors = $user_details[ 'errors' ];
    119119                } else {
    120120                        $new_user_login = apply_filters('pre_user_login', sanitize_user(stripslashes($_REQUEST['user_login']), true));
    121                         if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
     121                        if ( isset( $_POST[ 'noconfirmation' ] ) ) {
    122122                                add_filter( 'wpmu_signup_user_notification', '__return_false' ); // Disable confirmation email
    123123                        }
    124124                        wpmu_signup_user( $new_user_login, $_REQUEST[ 'email' ], array( 'add_to_blog' => $wpdb->blogid, 'new_role' => $_REQUEST[ 'role' ] ) );
    125                         if ( isset( $_POST[ 'noconfirmation' ] ) && is_super_admin() ) {
     125                        if ( isset( $_POST[ 'noconfirmation' ] ) ) {
    126126                                $key = $wpdb->get_var( $wpdb->prepare( "SELECT activation_key FROM {$wpdb->signups} WHERE user_login = %s AND user_email = %s", $new_user_login, $_REQUEST[ 'email' ] ) );
    127127                                wpmu_activate_signup( $key );
    128128                                $redirect = add_query_arg( array('update' => 'addnoconfirmation'), 'user-new.php' );
     
    283283                        </select>
    284284                </td>
    285285        </tr>
    286 <?php if ( is_super_admin() ) { ?>
    287286        <tr>
    288287                <th scope="row"><label for="adduser-noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
    289288                <td><label for="adduser-noconfirmation"><input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" /> <?php _e( 'Add the user without sending them a confirmation email.' ); ?></label></td>
    290289        </tr>
    291 <?php } ?>
    292290</table>
    293291<?php submit_button( __( 'Add Existing User '), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
    294292</form>
     
    367365                        </select>
    368366                </td>
    369367        </tr>
    370         <?php if ( is_multisite() && is_super_admin() ) { ?>
     368        <?php if ( is_multisite() ) { ?>
    371369        <tr>
    372370                <th scope="row"><label for="noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
    373371                <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 them a confirmation email.' ); ?></label></td>