https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32462 Jonathan Druart <jonathan.druart+koha@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha@gmail. | |com --- Comment #1 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- This change could work. diff --git a/Koha/Item.pm b/Koha/Item.pm index e508e7eb55c..f431f739b4f 100644 --- a/Koha/Item.pm +++ b/Koha/Item.pm @@ -1107,7 +1107,7 @@ sub columns_to_str { } while ( my ( $k, $v ) = each %$more_values ) { - $values->{$k} = join ' | ', @$v; + $values->{$k} = join ' | ', map { defined $_ ? $_ : q{} } @$v; } } -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.