[Koha-patches] [PATCH] (bug #3731) fix overdue csv carrier return

Nahuel ANGELINETTI nahuel.angelinetti at biblibre.com
Tue Oct 27 14:41:40 CET 2009


---
 misc/cronjobs/overdue_notices.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl
index 53f39f4..7715c89 100755
--- a/misc/cronjobs/overdue_notices.pl
+++ b/misc/cronjobs/overdue_notices.pl
@@ -421,7 +421,7 @@ END_SQL
                 my $titles = "";
                 while ( my $item_info = $sth2->fetchrow_hashref() ) {
                     my @item_info = map { $_ =~ /^date|date$/ ? format_date( $item_info->{$_} ) : $item_info->{$_} || '' } @item_content_fields;
-                    $titles .= join("\t", @item_info) . "\n";
+                    $titles .= join("\t", @item_info) . "\r\n";
                     $itemcount++;
                 }
                 $sth2->finish;
-- 
1.6.0.4




More information about the Koha-patches mailing list