From 6f06e66b11d067b87b1bed280ccae9629b04a398 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 Content-Type: text/plain; charset=utf-8 Moving use Output.pm to optional require. Signed-off-by: Marcel de Rooy --- installer/InstallAuth.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/InstallAuth.pm b/installer/InstallAuth.pm index a866815..1a8a4df 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; } -- 1.7.7.6