X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=C4%2FOutput.pm;h=9dd0d1f5a08ba4b270865df5b4666cc40c1ce417;hb=aa42aa7f95f70d44db7a4b571fdb93c7534fa64a;hp=46e48eeb984c5b0829c442301bcb3bd167cafa78;hpb=6f276facc8eae066655b9f8cfc0be56ed16a2bfa;p=koha.git diff --git a/C4/Output.pm b/C4/Output.pm index 46e48eeb98..9dd0d1f5a0 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 => 'utf-8', - -cookie => $cookie, + -type => 'text/html', + -charset => 'UTF-8', + -cookie => $cookie, ), $html; }