From f484ae608b878a0c38a963db7a7ed16734873a83 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: values merge point requested to be invisible 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) --- 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.35.1