From e726568f721afdd368dedfc867d5715f08826e1c Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 24 Nov 2014 16:27:41 +0000 Subject: [PATCH] Bug 12831 [Followup]: Clear existing sync A small enhancement to clear existing synced passowrd should this config option be enbled. This followup is related to bug 12831 http://bugs.koha-community.org/show_bug.cgi?id=9165 --- C4/Auth_with_ldap.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm index 99c80c2..ba217fa 100644 --- a/C4/Auth_with_ldap.pm +++ b/C4/Auth_with_ldap.pm @@ -315,6 +315,9 @@ sub _do_changepassword { "Unable to access borrowernumber with userid=$userid, borrowernumber=$borrowerid" if !$sth->rows; my ($cardnum) = $sth->fetchrow; + my $sth = C4::Context->dbh->prepare( + 'UPDATE borrowers SET password = null WHERE borrowernumber=?'); + $sth->execute($borrowerid); return $cardnum; } my $digest = hash_password($password); -- 1.7.10.4