Bug 10490: Overdue fines cap can't store decimal values
[koha.git] / installer / InstallAuth.pm
index a866815..0015a14 100644 (file)
@@ -394,8 +394,11 @@ sub checkauth {
         -HttpOnly => 1,
         -expires => ''
     );
-
-    output_html_with_http_headers $query, $cookie, $template->output;
+    print $query->header(
+        -type    => 'text/html; charset=utf-8',
+        -cookie  => $cookie
+      ),
+      $template->output;
     exit;
 }