From: Marcus Ramberg Date: Mon, 20 Sep 2004 22:46:33 +0000 (+0000) Subject: sets document encoding unless you use apache2 which is broken! X-Git-Tag: 2.10~162 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=maypole.git;a=commitdiff_plain;h=d90d317858fe10b73bb00ea9c67f98a7f56a1d4d sets document encoding unless you use apache2 which is broken! git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@200 48953598-375a-da11-a14b-00016c27c3ee --- diff --git a/lib/Apache/MVC.pm b/lib/Apache/MVC.pm index c175d1a..edb005f 100644 --- a/lib/Apache/MVC.pm +++ b/lib/Apache/MVC.pm @@ -42,7 +42,7 @@ sub parse_args { sub send_output { my $r = shift; - $r->{ar}->content_type( $r->{content_type} ); + $r->{ar}->content_type( $r->{content_type} ."; ".$r->{document_encoding} ); $r->{ar}->headers_out->set( "Content-Length" => length $r->{output} ); APACHE2 || $r->{ar}->send_http_header; $r->{ar}->print( $r->{output} );