http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10074

--- Comment #13 from M. de Rooy <[email protected]> ---
Tomas,
I am wondering if you should "Use" the Output module in Auth.pm.
You only need the module if the login fails.
So you could require it at that moment in run-time (without the additional
import when using a file).
The use statement will always require Output at compile-time. So in terms of
performance it would be better to require. 

In other words, what about this in C4/Auth.pm:

    require C4::Output;
    C4::Output::output_html_with_http_headers( $query, $cookie,
$template->output);

What do you think?

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to