26 Mar
2026
26 Mar
'26
9:32 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42188 --- Comment #3 from Janusz Kaczmarek <januszop@gmail.com> --- Martin, and how about modifying (in C4::Log.pm line 99): $infos = "biblio " . Dumper( ref $original eq 'HASH' ? $original : {} ); into: $infos = "biblio " . ( ref $original eq 'HASH' ? encode_json($original) : qw{} ); or even better: $infos = "biblio " . ( ref $original eq 'HASH' ? to_json($original, {utf8 => 1, pretty => 1}) : qw{} ); This would solve the problem of non-ASCII characters and make the Info column more readable, IMO. And would not change the diff. -- You are receiving this mail because: You are watching all bug changes.