@@ -, +, @@ 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(-) --- a/Koha/Holding.pm +++ a/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 --