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

(-)a/Koha/Patrons/Import.pm (-1 / +1 lines)
Lines 385-390 sub prepare_columns { Link Here
385
    foreach my $keycol (@csvcolumns) {
385
    foreach my $keycol (@csvcolumns) {
386
        # columnkeys don't contain whitespace, but some stupid tools add it
386
        # columnkeys don't contain whitespace, but some stupid tools add it
387
        $keycol =~ s/ +//g;
387
        $keycol =~ s/ +//g;
388
        $keycol =~ s/^\N{BOM}//; # Strip BOM if exists, otherwise it will be part of first column key
388
        $params->{keycol}->{$keycol} = $col++;
389
        $params->{keycol}->{$keycol} = $col++;
389
    }
390
    }
390
391
391
- 

Return to bug 24330