From c05120703fe6d6b0f26829ecb841a25d0b92def5 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Mon, 6 Feb 2017 21:52:11 +0000 Subject: [PATCH] Bug 13685: Sorting by author in opac reading history To test: 1) Log into OPAC, go to your raeding history 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 --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt index c4a7419..a22d68e 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt @@ -68,6 +68,7 @@ Type Title + Author Item type Call no. Date @@ -127,8 +128,8 @@ [% ELSE %] [% issue.title |html %] [% IF issue.subtitle %][% FOREACH subtitl IN issue.subtitle %][% subtitl.subfield %][% END %][% END %] [% END %] - [% issue.author %] + [% issue.author %] [% UNLESS ( noItemTypeImages ) %] [% IF ( issue.imageurl ) %] -- 2.1.4