Make WordPress Core

Changeset 51526


Ignore:
Timestamp:
08/02/2021 04:47:38 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Fix typo in the JS function name for handling the password reset button.

Follow-up to [50129].

See #53359.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/_enqueues/admin/user-profile.js

    r50547 r51526  
    9696     * a password reset email.
    9797     */
    98     function bindPasswordRestLink() {
     98    function bindPasswordResetLink() {
    9999        $( '#generate-reset-link' ).on( 'click', function() {
    100100            var $this  = $(this),
     
    432432
    433433        bindPasswordForm();
    434         bindPasswordRestLink();
     434        bindPasswordResetLink();
    435435    });
    436436
Note: See TracChangeset for help on using the changeset viewer.