From de62fac1b9b6de9e15aa2786e22400b771641c3f 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 The summary of Authority search results doesn't display informations about field $580. Those informations are separated by ; To test: 1) Make sure to have at least one authority with subfield 580$a 2) Home > Authorities > Results from authority search 3) Notice the series of semicolons in the summary " ; ; ; ; " - (screenshot 1) 4) Usually for earch subfield 580$a that you fill up when you modify/create an authority the summary should display 580$a (also $550, $560) followed by a semicolons "myEntryElementForSubfield580$a ; myOtherEntryElementForSubfield580$a ; " 5) Apply patch & refresh the browser 6) Notice the 580$a are now visible on summary and ends with a semicolon (screenshot 2) --- .../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