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

(-)a/misc/cronjobs/overdue_notices.pl (-2 / +1 lines)
Lines 629-635 END_SQL Link Here
629
        # Generate the content of the csv with headers
629
        # Generate the content of the csv with headers
630
        my $content;
630
        my $content;
631
        if ( defined $csvfilename ) {
631
        if ( defined $csvfilename ) {
632
            my $delimiter = C4::Context->preference('delimiter') // ';';
632
            my $delimiter = C4::Context->preference('delimiter') || ',';
633
            $content = join($delimiter, qw(title name surname address1 address2 zipcode city country email itemcount itemsinfo due_date issue_date)) . "\n";
633
            $content = join($delimiter, qw(title name surname address1 address2 zipcode city country email itemcount itemsinfo due_date issue_date)) . "\n";
634
        }
634
        }
635
        else {
635
        else {
636
- 

Return to bug 8168