From f2a8bb4005738b008efc8e8fe5660382e87faea5 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Tue, 14 Feb 2017 01:21:01 +0000 Subject: [PATCH] Bug 18108: Sorting by author in opac summary To test: 1) Log into OPAC, go to your summary 2) Notice 'author' is in Title column, therefore unable to sort by author 3) Apply patch and refresh page 4) Notice author has now been moved into Author column 5) Confirm sorting by author works as expected and sorting of all other columns works as expected Sponsored-by: Catalyst IT --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt index ef24771..c18c7dd 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -148,6 +148,7 @@ Using this account is not recommended because some parts of Koha will not functi [% IF ( JacketImages ) %] [% END %] Title + Author Due [% UNLESS ( item_level_itypes ) %] Item type @@ -210,7 +211,8 @@ Using this account is not recommended because some parts of Koha will not functi [% ISSUE.title |html %] [% FOREACH subtitl IN ISSUE.subtitle %] [% subtitl.subfield %][% END %] [% IF ( ISSUE.enumchron ) %] [% ISSUE.enumchron %][% END %] - [% ISSUE.author %] + + [% ISSUE.author %] [% IF ( ISSUE.overdue ) %] -- 2.1.4