diff options
author | Magnus Hagander | 2011-03-08 10:09:55 +0000 |
---|---|---|
committer | Magnus Hagander | 2011-03-08 10:11:02 +0000 |
commit | 42d398f7bfcc73f48a5b81c9cbbee02eb6149a72 (patch) | |
tree | 772eda85a8960bf39bdbee38c3bb2096072a7aa4 | |
parent | 5d3b332450cccb3ef51382017b6916b99d346395 (diff) |
Properly set charset to utf8 on responses.
-rw-r--r-- | perl-lib/PgCommitFest/Request.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-lib/PgCommitFest/Request.pm b/perl-lib/PgCommitFest/Request.pm index ada9de5..f2b89d4 100644 --- a/perl-lib/PgCommitFest/Request.pm +++ b/perl-lib/PgCommitFest/Request.pm @@ -30,7 +30,7 @@ sub new { 'db' => undef, 'error_list' => [], 'header' => { - 'Content-type' => 'text/html', + 'Content-type' => 'text/html; charset=utf-8', 'Cache-Control' => 'no-cache', 'Pragma' => 'no-cache', }, |