From cd6d0c5d602f32f884959fb89489a335a4300744 Mon Sep 17 00:00:00 2001 From: Andrew Moore Date: Wed, 23 Jul 2008 13:19:57 -0500 Subject: [PATCH] bug 2386: adding newline between items in overdue notices The lines for each item in the overdue notices were not separated by newlines. This cause them to all be smashed together. I'm putting a newline between them. Signed-off-by: Joshua Ferraro --- misc/cronjobs/overdue_notices.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl index 1f870385aa..ced4e64e8c 100755 --- a/misc/cronjobs/overdue_notices.pl +++ b/misc/cronjobs/overdue_notices.pl @@ -363,7 +363,7 @@ END_SQL my $titles = ""; while ( my $item_info = $sth2->fetchrow_hashref() ) { my @item_info = map { $_ =~ /date$/ ? format_date( $item_info->{$_} ) : $item_info->{$_} || '' } @item_content_fields; - $titles .= join "\t", @item_info; + $titles .= join "\t", @item_info . "\n"; } $sth2->finish; -- 2.39.2