From 5f55f0aeedf09134ad542b39e10d2e12ae8d0ded Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 12 May 2019 00:34:03 +0200 Subject: [PATCH] Bug 22886: Missing space between fields from Keyword to MARC mapping in cataloguing search If you have multiple subfields mapped to the 'subtitle' keyword, those fields will show up without separating space. To test: - Add 3 subtitle entries in Keyword to MARC mapping for a framework - 245 b - 245 c - 245 h - Edit a record, make sure the framework matches, add: - 245 b, c, h - Search for it in cataloguing search (not catalog!) - Verify the subtitle fields show, but are all concatenated - Apply patch - Search again and verify the display is improved with a separating space Signed-off-by: Marcel de Rooy Signed-off-by: Nick Clemens (cherry picked from commit f00d909220ebde5162335e255e4ba938a9563bff) Signed-off-by: Martin Renvoize --- koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt index 69071b6d3a..06e2614559 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt @@ -76,7 +76,7 @@

[% resultsloo.title | html %] - [% FOREACH subtitl IN resultsloo.subtitle %][% subtitl.subfield | html %][% END %]

+ [% FOREACH subtitl IN resultsloo.subtitle %][% subtitl.subfield | html %] [% END %]

[% IF ( resultsloo.summary ) %]

[% resultsloo.summary | html %]

[% ELSE %] -- 2.39.2