From 93a3b1fe8d94b06f995d6a0df7df63194910af28 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 Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- 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 494dc3274f..a715178500 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -153,6 +153,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 @@ -215,7 +216,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.39.5