fix date formatting in overdue_notices.pl
authorPianohacker <pianohacker@gmail.com>
Fri, 26 Sep 2008 19:57:25 +0000 (14:57 -0500)
committerGalen Charlton <galen.charlton@liblime.com>
Wed, 1 Oct 2008 17:46:16 +0000 (12:46 -0500)
This makes overdue_notices.pl format dates in fields that both start and end with 'date'.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
misc/cronjobs/overdue_notices.pl

index 225a41f..52d8abc 100755 (executable)
@@ -363,7 +363,7 @@ END_SQL
                 $sth2->execute( $borrowernumber, $mindays, $maxdays );
                 my $titles = "";
                 while ( my $item_info = $sth2->fetchrow_hashref() ) {
-                    my @item_info = map { $_ =~ /date$/ ? format_date( $item_info->{$_} ) : $item_info->{$_} || '' } @item_content_fields;
+                    my @item_info = map { $_ =~ /^date|date$/ ? format_date( $item_info->{$_} ) : $item_info->{$_} || '' } @item_content_fields;
                     $titles .= join("\t", @item_info) . "\n";
                 }
                 $sth2->finish;