From df1b96e27e7e3857e47f97fef4e0fa7189425180 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 7 Jan 2015 08:39:35 -0500 Subject: [PATCH] Bug 11239 - show hour of due date in history circulation Content-Type: text/plain; charset="utf-8" The circulation history page (Patron -> Circulation history) does not show the time when displaying the date of checkout, due date, and check in. This patch adds the "with_hours => 1" flag to the KohaDates filter. To test, apply the patch and view the circulation history page for a patron with good circulation history data. Confirm that dates are displayed correctly with times and that date sorting still works correctly. --- .../prog/en/modules/members/readingrec.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt index 773995a..6fd1ad1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt @@ -106,19 +106,19 @@ [% issue.barcode %] [% issue.renewals %] - [% issue.issuedate | $KohaDates %] + [% issue.issuedate |$KohaDates with_hours => 1 %] [% issue.issuingbranch %] [% IF issue.date_due %] - [% issue.date_due | $KohaDates %] + [% issue.date_due |$KohaDates with_hours => 1 %] [% ELSE %] [% END %] [% IF issue.returndate %] - [% issue.returndate | $KohaDates %] + [% issue.returndate |$KohaDates with_hours => 1 %] [% ELSE %] Checked out [% END %] -- 1.7.9.5