Revert "Bug 10074 - Encoding problems for installer"
authorGalen Charlton <gmc@esilibrary.com>
Mon, 29 Apr 2013 22:09:48 +0000 (15:09 -0700)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 29 Apr 2013 22:09:48 +0000 (15:09 -0700)
This reverts commit d0c6e09429d2af711f911b57601a02f17591d441.

Rolling back bug 6554 work until we have more comprehensive tests.

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;
 }