From b8a82d8b65c64d25cd6fb68585eef2aead015c4e Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 22 May 2014 09:14:18 -0400 Subject: [PATCH] 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 Signed-off-by: Jonathan Druart --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 9 +++++---- 1 file 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 %] -- 2.0.0.rc2