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

(-)a/Koha/Patrons/Import.pm (-2 / +2 lines)
Lines 61-67 has 'today_iso' => ( is => 'ro', lazy => 1, Link Here
61
    default => sub { output_pref( { dt => dt_from_string(), dateonly => 1, dateformat => 'iso' } ); }, );
61
    default => sub { output_pref( { dt => dt_from_string(), dateonly => 1, dateformat => 'iso' } ); }, );
62
62
63
has 'text_csv' => ( is => 'rw', lazy => 1,
63
has 'text_csv' => ( is => 'rw', lazy => 1,
64
    default => sub { Text::CSV->new( { binary => 1, } ); },  );
64
    default => sub { Text::CSV->new( { binary => 1, formula => 'empty' } ); },
65
);
65
66
66
sub import_patrons {
67
sub import_patrons {
67
    my ($self, $params) = @_;
68
    my ($self, $params) = @_;
68
- 

Return to bug 40579