From c494fc0bd0d9ea4eb68ee1736f78c0472a62735e Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 9 May 2022 15:22:16 +0000 Subject: [PATCH] Bug 30721: Markup error in detail page's component parts tab This patch adds a missing to the bibliographic detail page template in the section for showing component parts. Some comments are added to clarify the markup structure. To test you should have a record in your catalog with component parts. Bug 11175 provides one you can import if necessary: https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78023 To see the error, go to the staff interface, locate the record in question and view the detail page. Under the Components tag, scroll to the bottom. You will see content from "later" tabs at the bottom, e.g. "There is no order for this bibliographic record" or "No images have been uploaded for this bibliograhpic record yet." Apply the patch and reload the page. The tabs should still look correct, and now the tab content should be correctly isolated. Signed-off-by: David Nind Signed-off-by: Katrin Fischer Signed-off-by: Fridolin Somers (cherry picked from commit 656e864e6b3234a5d493bd2b44bc3b831bd458f1) Signed-off-by: Arthur Suzuki --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index 70a22e7262..6fb35aef8b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -682,7 +682,8 @@ Note that permanent location is a code, and location may be an authval. [% IF ComponentParts.size == Koha.Preference('MaxComponentRecords')%]

Only [% ComponentParts.size | html %] results are shown: show all component parts

[% END %] - + + [% END %] -- 2.39.5