Issue #309 has been reported by Jon Krengel.

----------------------------------------
Bug #309: Password reset via email token fails to send in a parameter
http://tools.lsc-project.org/issues/309

Author: Jon Krengel
Status: New
Priority: Normal
Assigned to: 
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

Reply via email to