From d4fbf8c49a1885e3e1e1ecc49d274b28ce7daf99 Mon Sep 17 00:00:00 2001 From: toins Date: Tue, 19 Jun 2007 15:14:08 +0000 Subject: [PATCH] writing charset explicitly. --- C4/Output.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/C4/Output.pm b/C4/Output.pm index b92d7126d9..b090976dbc 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -326,8 +326,9 @@ corresponds to the HTML page $html. sub output_html_with_http_headers ($$$) { my($query, $cookie, $html) = @_; print $query->header( - -type => 'text/html; charset=utf-8', - -cookie => $cookie, + -type => 'text/html' + -charset => 'UTF-8', + -cookie => $cookie, ), $html; } -- 2.39.2