Bug 391883 - "Set the charset for Doctor's cgi to UTF-8 instead of default ISO-8859-1" [p=reed/justdave r=timeless]

git-svn-id: svn://10.0.0.236/trunk@231906 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
reed%reedloden.com 2007-08-12 01:34:10 +00:00
parent 538d37c4de
commit 31a5a15f28

View File

@ -40,6 +40,7 @@ my $_cgi;
sub cgi {
my $class = shift;
$_cgi ||= new CGI();
$_cgi->charset("UTF-8");
return $_cgi;
}