]> git.decadent.org.uk Git - maypole.git/commitdiff
Only set content type for text/*
authorMarcus Ramberg <mramberg@cpan.org>
Tue, 26 Oct 2004 10:59:33 +0000 (10:59 +0000)
committerMarcus Ramberg <mramberg@cpan.org>
Tue, 26 Oct 2004 10:59:33 +0000 (10:59 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@270 48953598-375a-da11-a14b-00016c27c3ee

lib/Apache/MVC.pm

index 7c016ebc82060866b54466985f9ffc1242979f0e..ec701d0edd14dcdd6c73604fc843d03808548f77 100644 (file)
@@ -43,7 +43,9 @@ sub parse_args {
 sub send_output {
     my $r = shift;
     $r->{ar}->content_type(
-        $r->{content_type} . "; charset=" . $r->{document_encoding} );
+        $r->{content_type}  =~ m/^text/ ?
+       $r->{content_type} . "; charset=" . $r->{document_encoding} :
+       $r->{content_type} );
     $r->{ar}->headers_out->set( "Content-Length" => length $r->{output} );
     APACHE2 || $r->{ar}->send_http_header;
     $r->{ar}->print( $r->{output} );