Make WordPress Core


Ignore:
Timestamp:
06/30/2013 11:13:34 AM (12 years ago)
Author:
ocean90
Message:

Add a label to the second password field on User New and User Edit screen. props MikeHansenMe. fixes #20294.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/user-new.php

    r24317 r24531  
    341341<?php if ( apply_filters('show_password_fields', true) ) : ?>
    342342    <tr class="form-field form-required">
    343         <th scope="row"><label for="pass1"><?php _e('Password'); ?> <span class="description"><?php /* translators: password input field */_e('(twice, required)'); ?></span></label></th>
     343        <th scope="row"><label for="pass1"><?php _e('Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th>
    344344        <td><input name="pass1" type="password" id="pass1" autocomplete="off" />
    345         <br />
     345        </td>
     346    </tr>
     347    <tr class="form-field form-required">
     348        <th scope="row"><label for="pass2"><?php _e('Repeat Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th>
     349        <td>
    346350        <input name="pass2" type="password" id="pass2" autocomplete="off" />
    347351        <br />
Note: See TracChangeset for help on using the changeset viewer.