From bc866c25f48975a73c2fab6ad9276d958f0780ba Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Thu, 23 Jun 2011 15:13:04 +0100 Subject: [PATCH 1/1] Bug 5549 : returns calling wrong format routine on date We don't have an orm yet --- circ/returns.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/circ/returns.pl b/circ/returns.pl index cba9141952..a70b91abcf 100755 --- a/circ/returns.pl +++ b/circ/returns.pl @@ -179,7 +179,6 @@ my $dest = $query->param('dest'); my $calendar = Koha::Calendar->new( branchcode => $userenv_branch ); #dropbox: get last open day (today - 1) my $today = DateTime->now( time_zone => C4::Context->tz()); -#my $today_iso = $today->output('iso'); my $dropboxdate = $calendar->addDate($today, -1); if ($dotransfer){ # An item has been returned to a branch other than the homebranch, and the librarian has chosen to initiate a transfer @@ -521,7 +520,7 @@ if ($borrower) { { my $biblio = GetBiblioFromItemNumber( $item->{'itemnumber'}); push @itemloop, { - duedate => output_pref($item->{'date_due'}), + duedate => format_sqldatetime($item->{date_due}), biblionum => $biblio->{'biblionumber'}, barcode => $biblio->{'barcode'}, title => $biblio->{'title'}, -- 2.20.1