Make WordPress Core

Ticket #34950: 34950.patch

File 34950.patch, 545 bytes (added by subharanjan, 9 years ago)

Hides and Reset the checkbox "Confirm use of weak password " on click on Cancel button

  • wp-admin/js/user-profile.js

     
    251251                        $generateButton.show();
    252252                        $passwordWrapper.hide();
    253253
     254                        if ( $weakCheckbox.prop( 'checked' ) ) {
     255                                $weakCheckbox.removeProp( 'checked' );
     256                        }
     257                        $weakRow.hide();
     258
    254259                        // Disable the inputs when hiding to prevent autofill and submission.
    255260                        $pass1.prop( 'disabled', true );
    256261                        $pass2.prop( 'disabled', true );