http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12638 --- Comment #3 from Jonathan Druart <jonathan.druart@biblibre.com> --- Given the following script: test.pl #!/usr/bin/perl use Modern::Perl; use Data::Dumper; my $h = {id=>'λλλ', description=>'λλλ'}; warn Dumper $h; 1/ With perl v.5.10 a) perl test.pl $VAR1 = { 'description' => 'λλλ', 'id' => 'λλλ' }; b) cgi-bin/koha/test.pl displays in the Koha logs: $VAR1 = { 'id' => '\xce\xbb\xce\xbb\xce\xbb', 'description' => '\xce\xbb\xce\xbb\xce\xbb' }; 2/ With perl v.5.18 a) perl test.pl $VAR1 = { 'description' => 'λλλ', 'id' => 'λλλ' }; b) cgi-bin/koha/test.pl displays in the Koha logs: $VAR1 = { 'description' => 'λλλ', 'id' => 'λλλ' }; -- You are receiving this mail because: You are watching all bug changes.