Issue #309 has been updated by Clément Oudot. Status changed from New to Rejected Assigned to set to Clément Oudot % Done changed from 0 to 100
Hi Jon, thanks for your report. This issue was already fixed in r146 (see #288). Please use the trunk to have an up to date code, I will release a new version soon. ---------------------------------------- Bug #309: Password reset via email token fails to send in a parameter http://tools.lsc-project.org/issues/309 Author: Jon Krengel Status: Rejected Priority: Normal Assigned to: Clément Oudot Category: Self Service Password Target version: self-service-password-0.5 When checking for password strength the function requires an oldpassword to check if the old password is the same as the new password. Changing password via an email token fails to pass in this variable to the function, offsetting all the other passed in variables. Here is the section that needs the fix <pre> # Check password strength if ( $result === "" ) { $result = check_password_strength( $newpassword, $pwd_special_chars, $pwd_forbidden_chars, $pwd_min_length, $pwd_max_length, $pwd_min_lower, $pwd_min_upper, $pwd_min_digit, $pwd_min_special ); } </pre> To fix my copy I added an empty string between $newpassword and $pwd_special_chars. -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://tools.lsc-project.org/my/account
_______________________________________________ ltb-dev mailing list [email protected] http://lists.ltb-project.org/listinfo/ltb-dev
