Bugzilla – Attachment 86856 Details for
Bug 22461
Regression in #20287: LDAP user replication broken with mapped extended patron attributes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22461: Filter ldap mapping before inserting patron's info
Bug-22461-Filter-ldap-mapping-before-inserting-pat.patch (text/plain), 1.21 KB, created by
Jonathan Druart
on 2019-03-21 17:22:18 UTC
(
hide
)
Description:
Bug 22461: Filter ldap mapping before inserting patron's info
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2019-03-21 17:22:18 UTC
Size:
1.21 KB
patch
obsolete
>From b5268fd65695cc5c408f3989a02abc180dc6848e Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 21 Mar 2019 14:05:49 -0300 >Subject: [PATCH] Bug 22461: Filter ldap mapping before inserting patron's info > >--- > C4/Auth_with_ldap.pm | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > >diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm >index 3e2ab5cb86..6def54d415 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'} } ); >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22461
:
86696
|
86697
|
86856
|
87721
|
87722
|
87723
|
88192
|
88193
|
88194
|
88921