From a0854acf55dc19260b9a1c03019f07b2f0781283 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 Content-Type: text/plain; charset=utf-8 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 --- 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 b11daa744f..de32f38bce 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.11.0