Bugzilla – Attachment 112080 Details for
Bug 26756
Fix quotes showing behind some system preference descriptions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26686: Fix sorting of "updated on" and "time created" on notices tab
Bug-26686-Fix-sorting-of-updated-on-and-time-creat.patch (text/plain), 2.32 KB, created by
Katrin Fischer
on 2020-10-20 23:53:43 UTC
(
hide
)
Description:
Bug 26686: Fix sorting of "updated on" and "time created" on notices tab
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2020-10-20 23:53:43 UTC
Size:
2.32 KB
patch
obsolete
>From ed0b365963a580b2b28cdf4608d35bf97582312c Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Tue, 20 Oct 2020 16:55:37 +0000 >Subject: [PATCH] Bug 26686: Fix sorting of "updated on" and "time created" on > notices tab > >In the patron's account in the staff interface there is a tab >'Notices' that shows all notices sent out to a patron. The >updated on column would not sort at all, but there was also some >markup missing for the time created column. > >To test: >- Make sure you have a patron account with some notices, ideally > with different times and dates >- Verify that the updated on column doesn't sort at all >- Apply patch >- Verify both date columns now sort correctly for different > DateFormat settings > >https://bugs.koha-community.org/show_bug.cgi?id=26756 >--- > .../intranet-tmpl/prog/en/modules/members/notices.tt | 20 ++++++++++---------- > 1 file changed, 10 insertions(+), 10 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt >index bf81f012e2..deae3b25f3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt >@@ -30,15 +30,15 @@ > > [% IF ( QUEUED_MESSAGES ) %] > <table id="noticestable"> >- <thead> >- <tr> >- <th>Notice</th> >- <th>Type</th> >- <th>Status</th> >- <th>Updated on</th> >- <th>Time created</th> >- </tr> >- </thead> >+ <thead> >+ <tr> >+ <th>Notice</th> >+ <th>Type</th> >+ <th>Status</th> >+ <th class="title-string">Updated on</th> >+ <th class="title-string">Time created</th> >+ </tr> >+ </thead> > <tbody> > [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %] > <tr> >@@ -74,7 +74,7 @@ > </div> > [% END %] > </td> >- <td><span title="[% QUEUED_MESSAGE.time_status_changed | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates with_hours => 1 %]</span></td> >+ <td><span title="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates with_hours => 1 %]</span></td> > <td><span title="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</span></td> > </tr> > [% END %] >-- >2.11.0
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 26756
:
112052
|
112079
|
112080