diff -Nur -x '*.orig' -x '*.rej' perl-CGI-FormMagick-0.92/lib/CGI/FormMagick.pm mezzanine_patched_perl-CGI-FormMagick-0.92/lib/CGI/FormMagick.pm --- perl-CGI-FormMagick-0.92/lib/CGI/FormMagick.pm 2008-03-24 15:46:53.000000000 -0600 +++ mezzanine_patched_perl-CGI-FormMagick-0.92/lib/CGI/FormMagick.pm 2008-03-24 15:45:40.000000000 -0600 @@ -178,7 +178,7 @@ $self->{inputtype} = $args{type} || "file"; $self->{source} = $args{source}; - $self->{charset} = $args{charset} || undef; + $self->{charset} = $args{charset} || 'UTF-8'; $self->{cgi} = $args{cgi}; $self->{debug} = $args{debug} || 0; @@ -369,7 +369,8 @@ print $self->{cgi}->header( -pragma => 'no-cache', '-cache-control' => 'no-cache', - -expires => '-1d' + -expires => '-1d', + -charset => $self->{charset}, ); $self->debug_msg("The page number started out as $self->{page_number}");