From abb1b2839cc0e7bb7937a628bf265b90d84c7bc2 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Thu, 25 Apr 2013 22:32:43 -0400 Subject: [PATCH] Revert "Bug 10074 - Encoding problems for installer" This reverts commit 362d399e48a89e2903a48f189d593ace0e82b88f. 6554 considered harmful. --- installer/InstallAuth.pm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/installer/InstallAuth.pm b/installer/InstallAuth.pm index a86681565d..0015a14e2d 100644 --- a/installer/InstallAuth.pm +++ b/installer/InstallAuth.pm @@ -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; } -- 2.39.5