Deleting Date::Manip
[koha_fer] / C4 / Output.pm
index 46e48ee..82bf496 100644 (file)
@@ -54,8 +54,8 @@ push @EXPORT, qw(
 
 #Output
 push @EXPORT, qw(
-                &output_html_with_http_headers
-                );
+    &output_html_with_http_headers
+);
 
 
 #FIXME: this is a quick fix to stop rc1 installing broken
@@ -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;
 }