diff options
author | ivan <ivan> | 2009-07-25 22:00:57 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-07-25 22:00:57 +0000 |
commit | 48406d3152828ac06a2ebb9532a0ec6519cf4b9b (patch) | |
tree | 909394422efc07f604c3f9646ec6c87ee4d8f7f7 | |
parent | 63c6331218f38b57e37f17d5a5695d3a94eb01b4 (diff) |
set a character encoding for all pages; this should fix problems with diamond question marks even when the server gets an UTF-8 default setting, RT#3094
-rw-r--r-- | htetc/handler.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/htetc/handler.pl b/htetc/handler.pl index d6014b7c2..6721becc2 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -341,7 +341,8 @@ sub handler ###Module::Refresh->refresh;### - $r->content_type('text/html'); + #$r->content_type('text/html; charset=utf-8'); + $r->content_type('text/html; charset=iso-8859-1'); #eorar my $headers = $r->headers_out; |