https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32462
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart+koha@gmail. | |com --- Comment #1 from Jonathan Druart <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
