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

(-)a/Koha/Patrons/Import.pm (-1 / +2 lines)
Lines 283-288 sub import_patrons { Link Here
283
                next if $col eq 'password'   && !$overwrite_passwords;
283
                next if $col eq 'password'   && !$overwrite_passwords;
284
                next if $col eq 'dateexpiry' && $update_dateexpiry;
284
                next if $col eq 'dateexpiry' && $update_dateexpiry;
285
285
286
                $borrower{$col} = $member->{$col} if $col eq 'dateexpiry' && !$columns[ $csvkeycol{$col} ];
287
286
                unless ( exists( $csvkeycol{$col} ) || $defaults->{$col} ) {
288
                unless ( exists( $csvkeycol{$col} ) || $defaults->{$col} ) {
287
                    $borrower{$col} = $member->{$col} if ( $member->{$col} );
289
                    $borrower{$col} = $member->{$col} if ( $member->{$col} );
288
                }
290
                }
289
- 

Return to bug 34883