From 4e40784f99f883a4f2634ed938764221d818096c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 21 Mar 2019 14:05:49 -0300 Subject: [PATCH] Bug 22461: Filter ldap mapping before inserting patron's info Signed-off-by: Martin Renvoize Signed-off-by: Alex Arnaud Signed-off-by: Nick Clemens --- C4/Auth_with_ldap.pm | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm index 3e2ab5c..6def54d 100644 --- a/C4/Auth_with_ldap.pm +++ b/C4/Auth_with_ldap.pm @@ -221,7 +221,14 @@ sub checkpw_ldap { return(1, $cardnumber, $local_userid); } } elsif ($config{replicate}) { # A2, C2 - my $patron = Koha::Patron->new( \%borrower )->store; + my @columns = Koha::Patrons->columns; + my $patron = Koha::Patron->new( + map { + grep join( ' ', @columns ) =~ /$_/ + ? ( $_ => $data{$_} ) + : () + } keys %borrower + )->store; die "Insert of new patron failed" unless $patron; $borrowernumber = $patron->borrowernumber; C4::Members::Messaging::SetMessagingPreferencesFromDefaults( { borrowernumber => $borrowernumber, categorycode => $borrower{'categorycode'} } ); -- 1.7.2.5