Bug Fixing.
[koha.git] / C4 / Output.pm
index 46e48ee..9dd0d1f 100644 (file)
@@ -326,8 +326,9 @@ corresponds to the HTML page $html.
 sub output_html_with_http_headers ($$$) {
     my($query, $cookie, $html) = @_;
     print $query->header(
-       -type   => 'utf-8',
-       -cookie => $cookie,
+        -type    => 'text/html',
+        -charset => 'UTF-8',
+        -cookie  => $cookie,
     ), $html;
 }