]> git.decadent.org.uk Git - maypole.git/commitdiff
charset was not set correctly.
authorMarcus Ramberg <mramberg@cpan.org>
Sun, 24 Oct 2004 22:59:50 +0000 (22:59 +0000)
committerMarcus Ramberg <mramberg@cpan.org>
Sun, 24 Oct 2004 22:59:50 +0000 (22:59 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@260 48953598-375a-da11-a14b-00016c27c3ee

Changes
lib/Apache/MVC.pm

diff --git a/Changes b/Changes
index 71390457fdf9d15e0656ed2b155d6b71a78a309e..836e9eb57efda40f5e25aa9366369ce8228e74a5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Maypole 
 
+2.02 xxx xxx xx xx:xx:xx xxxx
+    - Fixed charset in http header.
+
 2.01  Fri Oct 24 14:50:00 2004
     - documentation fix to make t/03podcoverage happy
 
index 902c485c77df242c48c6361b2e1d519221a55a8b..30112251cf2473d0fc1a7b03e0ee9265dfdc1d87 100644 (file)
@@ -43,7 +43,7 @@ sub parse_args {
 sub send_output {
     my $r = shift;
     $r->{ar}->content_type(
-        $r->{content_type} . "; encoding=" . $r->{document_encoding} );
+        $r->{content_type} . "; charset=" . $r->{document_encoding} );
     $r->{ar}->headers_out->set( "Content-Length" => length $r->{output} );
     APACHE2 || $r->{ar}->send_http_header;
     $r->{ar}->print( $r->{output} );