From 224d2dee90237670672a7f2b212d5333852dd41f Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 11 Dec 2010 21:43:57 +0100 Subject: [PATCH] Bug 3009 - Change items.content field so it prints due date by default in overdue notices prints issuedate instead of duedate by default. This patch changes default to issues.date_due. Signed-off-by: Marcel de Rooy Signed-off-by: Chris Cormack --- misc/cronjobs/overdue_notices.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl index 92bc786a20..671368eab0 100755 --- a/misc/cronjobs/overdue_notices.pl +++ b/misc/cronjobs/overdue_notices.pl @@ -112,9 +112,9 @@ directory. This can be downloaded or futher processed by library staff. comma separated list of fields that get substituted into templates in places of the EEitems.contentEE placeholder. This -defaults to issuedate,title,barcode,author +defaults to due date,title,barcode,author -Other possible values come from fields in the biblios, items, and +Other possible values come from fields in the biblios, items and issues tables. =item B<-borcat> @@ -255,7 +255,7 @@ my $csvfilename; my $htmlfilename; my $triggered = 0; my $listall = 0; -my $itemscontent = join( ',', qw( issuedate title barcode author itemnumber ) ); +my $itemscontent = join( ',', qw( date_due title barcode author itemnumber ) ); my @myborcat; my @myborcatout; -- 2.20.1