@@ -, +, @@ --- installer/InstallAuth.pm | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- a/installer/InstallAuth.pm +++ a/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; } --