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

(-)a/Koha/Patrons/Import.pm (-1 / +1 lines)
Lines 141-146 sub import_patrons { Link Here
141
        }
141
        }
142
142
143
        $borrower{cardnumber} = undef if $borrower{cardnumber} eq "";
143
        $borrower{cardnumber} = undef if $borrower{cardnumber} eq "";
144
        $borrower{auth_method} = undef if $borrower{auth_method} eq "";
144
145
145
        # Check if borrower category code exists and if it matches to a known category. Pushing error to missing_criticals otherwise.
146
        # Check if borrower category code exists and if it matches to a known category. Pushing error to missing_criticals otherwise.
146
        $self->check_borrower_category($borrower{categorycode}, $borrowerline, $line_number, \@missing_criticals);
147
        $self->check_borrower_category($borrower{categorycode}, $borrowerline, $line_number, \@missing_criticals);
147
- 

Return to bug 28786