Skip Menu |

This queue is for tickets about the CGI-FormBuilder CPAN distribution.

Report information
The Basics
Id: 114018
Status: new
Priority: 0/
Queue: CGI-FormBuilder

People
Owner: Nobody in particular
Requestors: bugs [...] gnu.support
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 1.54
Fixed in: (no value)



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.