From ea16c580abe8884698c47853bb47d7023b470597 Mon Sep 17 00:00:00 2001 From: Joshua Ferraro Date: Thu, 30 Aug 2007 14:11:31 -0500 Subject: [PATCH] fixing inproper CGI header, again Signed-off-by: Chris Cormack --- C4/Auth.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index b69212862d..07eb0bd8a5 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -703,7 +703,8 @@ sub checkauth { # $cookie = $query->cookie(CGISESSID => $session->id # ); print $query->header( - -type => 'utf-8', + -type => 'text/html', + -charset => 'utf-8', -cookie => $cookie ), $template->output; -- 2.39.5