Issue #345 has been updated by Clément OUDOT. Status changed from Assigned to Closed % Done changed from 0 to 100
Done in r199 ---------------------------------------- Feature #345: Account unlock http://tools.lsc-project.org/issues/345 Author: Terry McMahon Status: Closed Priority: Low Assigned to: Clément OUDOT Category: Self Service Password Target version: self-service-password-0.7 Hi. I have been trialling your excellent self service password reset tool with my users over the past month. I have had a handful of users who still could not get into their accounts after the password reset. The reason was that they had been banging away at the login page and had locked their account before decided to go to the reset page. I have found that the slight change below within functions.inc.php at around line 230 solved the problem. I have only tested this in AD mode but that looks pretty safe to me. # Set password value if ( $ad_mode ) { $userdata["unicodePwd"] = $password; *$userdata["lockoutTime"] = 0;* } else { $userdata["userPassword"] = $password; }.... And thanks again for an lovely piece of software. Terry -- 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
