From d90d317858fe10b73bb00ea9c67f98a7f56a1d4d Mon Sep 17 00:00:00 2001
From: Marcus Ramberg <mramberg@cpan.org>
Date: Mon, 20 Sep 2004 22:46:33 +0000
Subject: [PATCH] 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
---
 lib/Apache/MVC.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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} );
-- 
2.39.5