From b41c3087b6526c530790c78b2dcdc64b7d582a2a Mon Sep 17 00:00:00 2001 From: toins Date: Wed, 20 Jun 2007 09:45:09 +0000 Subject: [PATCH] missing comma :-/ --- C4/Output.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Output.pm b/C4/Output.pm index b090976dbc..9dd0d1f5a0 100644 --- a/C4/Output.pm +++ b/C4/Output.pm @@ -326,7 +326,7 @@ corresponds to the HTML page $html. sub output_html_with_http_headers ($$$) { my($query, $cookie, $html) = @_; print $query->header( - -type => 'text/html' + -type => 'text/html', -charset => 'UTF-8', -cookie => $cookie, ), $html; -- 2.39.2