From 87b7270d3d411f3620b573eabb74dcdc22fcaee9 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 2 Nov 2019 06:39:28 +0000 Subject: [PATCH] Bug 23784: Show subtitle, number and part in course reserve list of records At the moment only the title will display in the course reserves details, but not the information from other title fields. For series with multiple volumes that can lead to confusing display. The patch makes use of the new include to display 245$abnp. To test: - Add mulitple records to a course reserce course Make sure you have some with different combinations of 245$b$n$p - Look at the course details in the OPAC - Verify only $a displays - Apply patch - Reload - Verify now the full information displays Depending on your installation, you might want ot check that the 245 are correctly mapped and save the record once so the database fields are correctly filled. Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Jonathan Druart Signed-off-by: Martin Renvoize Signed-off-by: Joy Nelson --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt index b7d43fba22..6ab523fca8 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt @@ -68,7 +68,7 @@ [% FOREACH cr IN course_reserves %] - [% cr.biblio.title | html %] + [% INCLUDE 'biblio-title-head.inc' biblio=cr.biblio %] [% cr.biblio.author | html %] [% ItemTypes.GetDescription( cr.item.itype ) | html %] [% Branches.GetName( cr.item.holdingbranch ) | html %]
[% AuthorisedValues.GetByCode( 'LOC', cr.item.location, 1 ) | html %] -- 2.39.5