Issue #345 has been updated by Clément OUDOT. Status changed from New to Assigned Assigned to set to Clément OUDOT Target version changed from self-service-password-? to self-service-password-0.7
Thanks for this suggestion. I think I will add an option to enable this. ---------------------------------------- Feature #345: Account unlock http://tools.lsc-project.org/issues/345 Author: Terry McMahon Status: Assigned 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
