missing comma :-/
authortoins <toins>
Wed, 20 Jun 2007 09:45:09 +0000 (09:45 +0000)
committertoins <toins>
Wed, 20 Jun 2007 09:45:09 +0000 (09:45 +0000)
C4/Output.pm

index b090976..9dd0d1f 100644 (file)
@@ -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;