From 888ffaa95a226dd56bbeee7a3a2902ceda9fa1f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Breuillard?= Date: Wed, 10 Nov 2021 15:24:59 +0100 Subject: [PATCH] Bug 29777: Fields 580 are wrong displayed in summary column Whitespaces escaped by ; are displayed in the summary instead of fields 580 To test: 1)Home > Authorities > Result from authority search 2)On the authorities list, verify that one of those is displaying the fields 580 on the summary column (it should look like: ; ; ; ;) 3)Apply patch 4)Repeat 1) and 2) 5)Notice the changes --- .../prog/en/includes/authorities-search-results.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc index 3e0c4904f1..7be4b1726e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search-results.inc @@ -89,7 +89,7 @@ [% IF summary.seealso %]
[% FOREACH see IN summary.seealso %] - [% PROCESS showreference heading=see.heading linkType="" type=see.type authid=see.authid %] + [% PROCESS showreference heading=see.heading linkType="" authid=see.authid %] [% IF ! loop.last %] ; [% END %] [% END %]
-- 2.17.1