Make WordPress Core

Ticket #27398: 27398.2.patch

File 27398.2.patch, 1.8 KB (added by vancoder, 10 years ago)

Updating text to make it clearer what the email confirmation step actually is.

  • user-new.php

    # This patch file was generated by NetBeans IDE
    # Following Index: paths are relative to: /Users/grantmangham/Development/vagrant-local/www/wordpress-trunk/wp-admin
    # This patch can be applied using context Tools: Patch action on respective folder.
    # It uses platform neutral UTF-8 encoding and \n newlines.
    # Above lines and this line are ignored by the patching process.
     
    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 sending an email that requires their confirmation.' ); ?></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 sending an email that requires their confirmation.' ); ?></label></td>
    422422        </tr>
    423423        <?php } ?>
    424424</table>