View | Details | Raw Unified | Return to bug 5373
Collapse All | Expand All

(-)a/tools/import_borrowers.pl (-2 / +1 lines)
Lines 62-68 my @columnkeys = C4::Members->columns; Link Here
62
if ($extended) {
62
if ($extended) {
63
    push @columnkeys, 'patron_attributes';
63
    push @columnkeys, 'patron_attributes';
64
}
64
}
65
my $columnkeystpl = [ map { {'key' => $_} }  grep {$_ ne 'borrowernumber' && $_ ne 'cardnumber'} @columnkeys ];  # ref. to array of hashrefs.
65
my $columnkeystpl = [ map { {'key' => $_} }  grep {$_ ne 'borrowernumber' } @columnkeys ];  # ref. to array of hashrefs.
66
66
67
my $input = CGI->new();
67
my $input = CGI->new();
68
our $csv  = Text::CSV->new({binary => 1});  # binary needed for non-ASCII Unicode
68
our $csv  = Text::CSV->new({binary => 1});  # binary needed for non-ASCII Unicode
69
- 

Return to bug 5373