From f5c4541610b4b830686d21bd5e964419abf798f2 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 25 Nov 2014 10:59:01 -0500 Subject: [PATCH] Bug 13336 - Add time to date column for patron circulation history Some librarians have expressed that it would be very helpful to have the hours displayed in the date column for a patron's circulation history. The time an action took place can be vital to tracking down which librarians were working at the time a given circulation action took place. Test Plan: 1) View a patron's circulation history 2) Note the Date column has no hour/minute 3) Apply this patch 4) Reload the page 5) Note the hour and minutes now display Signed-off-by: David Roberts --- koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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..8f3cbda 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt @@ -89,7 +89,7 @@ [% END %] - [% issue.issuestimestamp | $KohaDates %] + [% issue.issuestimestamp | $KohaDates with_hours => 1 %] [% issue.title |html %] -- 1.7.10.4