Make WordPress Core


Ignore:
Timestamp:
01/26/2023 06:10:54 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Bring some consistency to the order of attributes in password fields.

Follow-up to [11359], [13592], [13696], [33023], [33246], [33353], [41556], [46256], [49248], [53111], [55094].

See #56791.

File:
1 edited

Legend:

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

    r55094 r55145  
    585585        <th scope="row"><label for="pass2"><?php _e( 'Repeat Password' ); ?> <span class="description"><?php _e( '(required)' ); ?></span></label></th>
    586586        <td>
    587         <input name="pass2" type="password" id="pass2" autocomplete="new-password" spellcheck="false" aria-describedby="pass2-desc" />
     587        <input type="password" name="pass2" id="pass2" autocomplete="new-password" spellcheck="false" aria-describedby="pass2-desc" />
    588588        <p class="description" id="pass2-desc"><?php _e( 'Type the password again.' ); ?></p>
    589589        </td>
Note: See TracChangeset for help on using the changeset viewer.