https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28489 --- Comment #9 from Joonas Kylmälä <joonas.kylmala@helsinki.fi> --- (In reply to Julian Maurice from comment #8)
The weird thing is that it works correctly with characters like ✓ It seems like the problem is that ä in Latin-1 is the same as the unicode code point (E4) which probably confuses some encoding auto-detection mechanism
It only confuses the C code implementation of Data::Dumper, if we enable local $Data::Dumper::Useperl = 1; or just put in the default serializer directly the following line
$d->Useperl( 1 );
it starts working. I just don't know if we can make it a workable solution. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.