Error when resetting password since v7.2.0
-
If plugin is enabled for reset password page, users are unable to reset their password due to error in anr-captcha-class.php where value of second, hidden password box is being set to the id of the first password box, not the value:
pass2.setAttribute( ‘value’, pass1.getAttribute(‘id’) );
Code should be:
pass2.setAttribute( ‘value’, pass1.getAttribute(‘value’) );
This bug was introduced in v7.2 as shown in repo:
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Error when resetting password since v7.2.0’ is closed to new replies.