From 1ff84b6454de4f4e56d30c81a7484f42ee09e2be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick?= Date: Wed, 19 Feb 2014 10:59:59 -0500 Subject: [PATCH] Only update the password if the LDAP password field was mapped. http://bugs.koha-community.org/show_bug.cgi?id=8148 Signed-off-by: Martin Renvoize Signed-off-by: Dobrica Pavlinusic --- C4/Auth_with_ldap.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm index 4f47f66..cf120e6 100644 --- a/C4/Auth_with_ldap.pm +++ b/C4/Auth_with_ldap.pm @@ -318,8 +318,8 @@ sub update_local { ((map {$borrower->{$_}} @keys), $borrowerid) ); - # MODIFY PASSWORD/LOGIN - _do_changepassword($userid, $borrowerid, $password); + # MODIFY PASSWORD/LOGIN if password was mapped + _do_changepassword($userid, $borrowerid, $password) if $borrower->{'password'}; } 1; -- 1.7.2.5