Bug 22461: Clarify and correct the hash reduction

There were a couple of bugs in the previous patch which meant it wasn't
working as intended. This patch corrects those bugs and simplifies the
code a little along the way.

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Alex Arnaud <alex.arnaud@biblibre.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Martin Renvoize 2019-04-10 14:39:40 +01:00 committed by root
parent 4e40784f99
commit c9fa30a55b

View file

@ -223,11 +223,9 @@ sub checkpw_ldap {
} elsif ($config{replicate}) { # A2, C2
my @columns = Koha::Patrons->columns;
my $patron = Koha::Patron->new(
map {
grep join( ' ', @columns ) =~ /$_/
? ( $_ => $data{$_} )
: ()
} keys %borrower
{
map { defined( $borrower{$_} ) ? ( $_ => $borrower{$_} ) : () } @columns
}
)->store;
die "Insert of new patron failed" unless $patron;
$borrowernumber = $patron->borrowernumber;