Make WordPress Core

Ticket #27398: 27398.diff

File 27398.diff, 1.4 KB (added by collinsinternet, 10 years ago)

Updated text to say: "Add the user without requiring the email confirmation step." per @DrewAPicture's suggestion.

  • wp-admin/user-new.php

     
    305305<?php if ( is_super_admin() ) { ?>
    306306        <tr>
    307307                <th scope="row"><label for="adduser-noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
    308                 <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>
     308                <td><label for="adduser-noconfirmation"><input type="checkbox" name="noconfirmation" id="adduser-noconfirmation" value="1" /> <?php _e( 'Add the user without requiring the email confirmation step.' ); ?></label></td>
    309309        </tr>
    310310<?php } ?>
    311311</table>
     
    418418        <?php if ( is_multisite() && is_super_admin() ) { ?>
    419419        <tr>
    420420                <th scope="row"><label for="noconfirmation"><?php _e('Skip Confirmation Email') ?></label></th>
    421                 <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>
     421                <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 requiring the email confirmation step.' ); ?></label></td>
    422422        </tr>
    423423        <?php } ?>
    424424</table>