Bugzilla – Attachment 35005 Details for
Bug 11239
show hour of due date in history circulation
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11239 - show hour of due date in history circulation
Bug-11239---show-hour-of-due-date-in-history-circu.patch (text/plain), 2.21 KB, created by
Owen Leonard
on 2015-01-07 13:45:46 UTC
(
hide
)
Description:
Bug 11239 - show hour of due date in history circulation
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2015-01-07 13:45:46 UTC
Size:
2.21 KB
patch
obsolete
>From df1b96e27e7e3857e47f97fef4e0fa7189425180 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >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 @@ > <td>[% issue.barcode %]</td> > <td>[% issue.renewals %]</td> > <td> >- <span title="[% issue.issuedate %]">[% issue.issuedate | $KohaDates %]</span></td> >+ <span title="[% issue.issuedate %]">[% issue.issuedate |$KohaDates with_hours => 1 %]</span></td> > </td> > <td>[% issue.issuingbranch %]</td> > <td> > [% IF issue.date_due %] >- <span title="[% issue.date_due %]">[% issue.date_due | $KohaDates %]</span> >+ <span title="[% issue.date_due %]">[% issue.date_due |$KohaDates with_hours => 1 %]</span> > [% ELSE %] > <span title="0000-00-00"></span> > [% END %] > </td> > <td> > [% IF issue.returndate %] >- <span title="[% issue.returndate %]">[% issue.returndate | $KohaDates %]</span> >+ <span title="[% issue.returndate %]">[% issue.returndate |$KohaDates with_hours => 1 %]</span> > [% ELSE %] > <span title="Checked out"><small>Checked out</small></span> > [% END %] >-- >1.7.9.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11239
:
22887
|
35005
|
35028
|
35035