Making WordPress.org

Changeset 10206

Timestamp:
08/26/2020 05:52:18 AM (4 years ago)
Author:
dd32
Message:

Login: Your email won't be emailed to you, but you will receive a link via email to set a password.

Also removes the word 'Required', if it's not obvious that these two fields need to be set, the error message will take care of that.

Props RMarks.
Fixes #5390.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/register.php

    r9830 r10206  
    5050        <label for="user_login"><?php _e( 'Username', 'wporg' ); ?></label>
    5151        <input type="text" name="user_login" id="user_login" class="input <?php if ( $error_user_login ) echo 'error'; ?>" value="<?php echo esc_attr( $user_login ) ?>" size="20" maxlength="60" />
    52         <span class="small"><?php _e( 'Required. Only lower case letters (a-z) and numbers (0-9) are allowed.', 'wporg' ); ?></span>
     52        <span class="small"><?php _e( 'Only lower case letters (a-z) and numbers (0-9) are allowed.', 'wporg' ); ?></span>
    5353    </p>
    5454    <?php
     
    6666        <label for="user_email"><?php _e( 'Email', 'wporg' ); ?></label>
    6767        <input type="email" name="user_email" id="user_email" class="input <?php if ( $error_user_email ) echo 'error'; ?>" value="<?php echo esc_attr( $user_email ) ?>" size="20" maxlength="100" />
    68         <span class="small"><?php _e( 'Required. Your password will be emailed here.', 'wporg' ); ?></span>
     68        <span class="small"><?php _e( ' here.', 'wporg' ); ?></span>
    6969    </p>
    7070    <?php
Note: See TracChangeset for help on using the changeset viewer.