[Koha-patches] [PATCH] bug 2473: correct display of items.content

Galen Charlton galen.charlton at liblime.com
Tue Aug 5 22:01:42 CEST 2008


Correct bug in output of overdue notices that has
items.content displaying only the number of columns
in each items.content structure (currently, 4).

Patch inspired by patch submitted by Paul Poulain.

[LL bug 31]
---
 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 ced4e64..64e3722 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 . "\n";
+                    $titles .= join("\t", @item_info) . "\n";
                 }
                 $sth2->finish;
 
-- 
1.5.5.GIT




More information about the Koha-patches mailing list