LP#1468422 Implement password reset updates
authorBill Erickson <berickxx@gmail.com>
Tue, 24 Nov 2015 16:31:06 +0000 (11:31 -0500)
committerDan Wells <dbw2@calvin.edu>
Fri, 26 Feb 2016 14:18:05 +0000 (09:18 -0500)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Dan Wells <dbw2@calvin.edu>
Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm

index 6ccae93..c56d8e7 100644 (file)
@@ -4103,8 +4103,7 @@ sub commit_password_reset {
     }
 
     # All is well; update the password
-    $user->passwd($password);
-    $e->update_actor_user($user);
+    modify_migrated_user_password($e, $user->id, $password);
 
     # And flag that this password reset request has been honoured
     $aupr->[0]->has_been_reset('t');