https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42188

--- Comment #3 from Janusz Kaczmarek <[email protected]> ---
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.
_______________________________________________
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/

Reply via email to