Make WordPress Core

Opened 10 years ago

Closed 10 years ago

#32949 closed defect (bug) (fixed)

Filling out the second password box, automatically fills out the first one

Reported by: kosvrouvas's profile kosvrouvas Owned by: obenland's profile obenland
Milestone: 4.3 Priority: normal
Severity: normal Version: 4.3
Component: Upgrade/Install Keywords:
Focuses: Cc:

Description

Typing a password on the second box automatically fills out the first one during WordPress installation, this is tested on trunk

Quoting @ocean90

  That's because of the Better Passwords project, there is a line in
  wp-admin/js/user-profile.js which does 

           /**
           * Fix a LastPass mismatch issue, LastPass only changes pass2.
           *
           * This fixes the issue by copying any changes from the hidden
           * pass2 field to the pass1 field.
           */
        pw_field2.on( 'input propertychange', function() {
            pw_field.val( pw_field2.val() );
            pw_field.trigger( 'propertychange' );
        } );

Because /wp-admin has only one password field now.

Attachments (1)

Screenshot (37).png (53.1 KB) - added by kosvrouvas 10 years ago.
password boxes

Download all attachments as: .zip

Change History (7)

@kosvrouvas
10 years ago

password boxes

#1 @MikeHansenMe
10 years ago

This has a patch over on #32589 to add the new password UI to the install screen.

Version 0, edited 10 years ago by MikeHansenMe (next)

This ticket was mentioned in Slack in #core-passwords by mikehansenme. View the logs.


10 years ago

#3 @jorbin
10 years ago

  • Milestone changed from Awaiting Review to 4.3

Milestoning to ensure this is addressed.

This ticket was mentioned in Slack in #core-passwords by mikehansenme. View the logs.


10 years ago

#5 @obenland
10 years ago

  • Owner set to obenland
  • Status changed from new to accepted

#6 @obenland
10 years ago

  • Resolution set to fixed
  • Status changed from accepted to closed

Fixed in [33246].

Note: See TracTickets for help on using tickets.