From: Colin Campbell Date: Thu, 23 Jun 2011 14:13:04 +0000 (+0100) Subject: Bug 5549 : returns calling wrong format routine on date X-Git-Url: http://git.rot13.org/?p=koha.git;a=commitdiff_plain;h=bc866c25f48975a73c2fab6ad9276d958f0780ba Bug 5549 : returns calling wrong format routine on date We don't have an orm yet --- 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'},