Subject: | utf-8 handling in CGI/FormBuilder/Source/File.pm |
The line 81 of the CGI::FormBuilder::Source::File is this one:
$line = Encode::decode('utf-8', $line) if $utf8;
but it fails.
I have changed it on my side to:
utf8::decode($line) if $utf8;
and it works that way.