Make WordPress Core

Ticket #38459: 38459.patch

File 38459.patch, 1.2 KB (added by Ankit K Gupta, 9 years ago)

added patch

  • wp-admin/user-new.php

     
    341341        </tr>
    342342<?php if ( current_user_can( 'manage_network_users' ) ) { ?>
    343343        <tr>
    344                 <th scope="row"><label for="adduser-noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
     344                <th scope="row"><?php _e('Skip Confirmation Email') ?></th>
    345345                <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>
    346346        </tr>
    347347<?php } ?>
     
    471471        </tr>
    472472        <?php if ( is_multisite() && current_user_can( 'manage_network_users' ) ) { ?>
    473473        <tr>
    474                 <th scope="row"><label for="noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
     474                <th scope="row"><?php _e('Skip Confirmation Email') ?></th>
    475475                <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>
    476476        </tr>
    477477        <?php } ?>