From 3750cdb9e83b24fee301bb03997ff1f209cb52a9 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 22 May 2014 09:14:18 -0400 Subject: [PATCH] [SIGNED-OFF] Bug 12308 - show all title subfields on the holds list The patron summary page in the bootstrap OPAC does not show subtitle in the list of checkouts, overdues, or holds. This patch corrects this. To test, set your OPAC theme to bootstrap and log in to the OPAC as a user who has items checked out, items overdue, and items on hold. At least one of each of those should be a title which has a subtitle as defined in Administration -> Keyword to MARC mapping. Subtitles should appear correctly under the "Checked out," "Overdue," and "Holds" tabs. Signed-off-by: Nicole C. Engard --- .../opac-tmpl/bootstrap/en/modules/opac-user.tt | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) 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 50c66c1..797e671 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -184,7 +184,8 @@ [% END # / IF JacketImages %] - [% ISSUE.title |html %] [% ISSUE.author %] + [% ISSUE.title |html %] [% FOREACH subtitl IN ISSUE.subtitle %] [% subtitl.subfield %][% END %] + [% ISSUE.author %] [% IF ( ISSUE.overdue ) %] @@ -338,7 +339,7 @@ [% WAITIN.itemtype %] - [% WAITIN.waiting_title %] + [% WAITIN.waiting_title %] [% FOREACH subtitl IN WAITIN.subtitle %] [% subtitl.subfield %][% END %] [% WAITIN.author %] @@ -422,7 +423,7 @@ [% END # /IF jacketcell %] - [% OVERDUE.title |html %] + [% OVERDUE.title |html %] [% FOREACH subtitl IN OVERDUE.subtitle %] [% subtitl.subfield %][% END %] [% OVERDUE.author %] @@ -520,7 +521,7 @@ [% END %] - [% RESERVE.reserves_title %] + [% RESERVE.reserves_title %] [% FOREACH subtitl IN RESERVE.subtitle %] [% subtitl.subfield %][% END %] [% RESERVE.author %] -- 1.7.2.3