projects
/
maypole.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff62bc5
)
sets document encoding unless you use apache2 which is broken!
author
Marcus Ramberg
<mramberg@cpan.org>
Mon, 20 Sep 2004 22:46:33 +0000
(22:46 +0000)
committer
Marcus Ramberg
<mramberg@cpan.org>
Mon, 20 Sep 2004 22:46:33 +0000
(22:46 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@200
48953598
-375a-da11-a14b-
00016c27c3ee
lib/Apache/MVC.pm
patch
|
blob
|
history
diff --git
a/lib/Apache/MVC.pm
b/lib/Apache/MVC.pm
index c175d1a059302fb17727ff7aebc8beab90f11577..edb005fc47c39a607c165a367cf858f5b2b35b3a 100644
(file)
--- 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} );