From fc22d3f3e328c4b64f1e94b5a871671951a1733d Mon Sep 17 00:00:00 2001 From: Andrew Nugged Date: Tue, 7 Dec 2021 16:07:03 +0200 Subject: [PATCH] Bug 20447: (QA follow-up) UX improvement: merge point of values should be invisible. This is requested by customers, i.e. no pipe separate char between (librarians said they using it also for copy-pasting, and it confuses patrons because they read roman numbers with this | wrongly) Signed-off-by: Nick Clemens --- Koha/Holding.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Holding.pm b/Koha/Holding.pm index 373a3c919f..f41e9d37cf 100644 --- a/Koha/Holding.pm +++ b/Koha/Holding.pm @@ -364,7 +364,7 @@ sub marc_to_koha_fields { } } } - $result->{$column} = scalar(@values) ? join(' | ', @values) : undef; + $result->{$column} = scalar(@values) ? join(' ', @values) : undef; } # convert suppress field to boolean -- 2.30.2