[Koha-bugs] [Bug 22461] Regression in #20287: LDAP user replication broken with mapped extended patron attributes

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Apr 24 23:01:07 CEST 2019


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22461

--- Comment #21 from Jonathan Druart <jonathan.druart at bugs.koha-community.org> ---
Try that:

use Koha::Patrons;
my @columns = Koha::Patrons->columns;
my $xxx = { cardnumber => 1, foo => 2, borrowernumber => 3, bar => 4, opacnote
=> undef };
my $h1 = { map { join(' ', at columns) =~ /$_/ ? ( $_ => $xxx->{$_} )  : () }
keys(%$xxx) } ; # original version
my $h2 = { map { defined( $xxx->{$_} ) ? ( $_ => $xxx->{$_} ) : () } @columns
}; # new version
use Data::Printer colored => 1; warn p $h1; 
use Data::Printer colored => 1; warn p $h2; 

Note sure if it is relevant however.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list