Changeset 61651 for trunk/src/wp-admin/user-new.php
- Timestamp:
- 02/16/2026 05:01:33 PM (2 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/user-new.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/user-new.php
r59901 r61651 542 542 <tr class="form-field form-required"> 543 543 <th scope="row"><label for="user_login"><?php _e( 'Username' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th> 544 <td><input name="user_login" type="text" id="user_login" value="<?php echo esc_attr( $new_user_login ); ?>" aria-required="true" autocapitalize="none" autocorrect="off" autocomplete="off" maxlength="60" /></td>544 <td><input name="user_login" type="text" id="user_login" class="ltr" value="<?php echo esc_attr( $new_user_login ); ?>" aria-required="true" autocapitalize="none" autocorrect="off" autocomplete="off" maxlength="60" /></td> 545 545 </tr> 546 546 <tr class="form-field form-required"> … … 601 601 <?php $initial_password = wp_generate_password( 24 ); ?> 602 602 <div class="password-input-wrapper"> 603 <input type="password" name="pass1" id="pass1" class="regular-text " autocomplete="new-password" spellcheck="false" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" aria-describedby="pass-strength-result" />603 <input type="password" name="pass1" id="pass1" class="regular-text ltr" autocomplete="new-password" spellcheck="false" data-reveal="1" data-pw="<?php echo esc_attr( $initial_password ); ?>" aria-describedby="pass-strength-result" /> 604 604 <div style="display:none" id="pass-strength-result" aria-live="polite"></div> 605 605 </div>
Note: See TracChangeset
for help on using the changeset viewer.