From e848d89e45d3e6610c3e9d246bd3672636dd63fb Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 19 Apr 2013 14:44:35 +0200 Subject: [PATCH] Bug 10074: QA Followup for InstallAuth.pm Moving use Output.pm to optional require. Signed-off-by: Marcel de Rooy Signed-off-by: Jared Camins-Esakov --- installer/InstallAuth.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/InstallAuth.pm b/installer/InstallAuth.pm index a86681565d..1a8a4df89f 100644 --- a/installer/InstallAuth.pm +++ b/installer/InstallAuth.pm @@ -26,7 +26,6 @@ use Digest::MD5 qw(md5_base64); require Exporter; use C4::Context; -use C4::Output; use C4::Templates; use C4::Koha; use CGI::Session; @@ -395,7 +394,8 @@ sub checkauth { -expires => '' ); - output_html_with_http_headers $query, $cookie, $template->output; + require C4::Output; + C4::Output::output_html_with_http_headers($query,$cookie,$template->output); exit; } -- 2.39.5