From 584f93a1d568b9f99bbb7cb195fb71cf596d9f92 Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Mon, 25 Jan 2010 14:45:10 +0100 Subject: [PATCH] [followup] (bug #4051) set as binary As we concat adress, we need to specify csv as binary, else it's broken and skip some lines. --- circ/overdue.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/circ/overdue.pl b/circ/overdue.pl index 2e22e6d433..aab7bdd67f 100755 --- a/circ/overdue.pl +++ b/circ/overdue.pl @@ -210,6 +210,7 @@ sub build_csv { # build header ... my @keys = sort keys %{ $overdues->[0] }; my $csv = Text::CSV_XS->new({ + binary => 1, sep_char => C4::Context->preference("delimiter") ? C4::Context->preference("delimiter") : ';' , }); -- 2.39.5