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