Koha/koha-tmpl/errors/401.pl
2005-01-13 18:35:47 +00:00

22 lines
561 B
Perl
Executable file

#!/usr/bin/perl
use strict;
use CGI;
use C4::Auth;
use C4::Output;
use C4::Interface::CGI::Output;
use C4::Context;
use HTML::Template;
my $query = new CGI;
my $admin = C4::Context->preference('KohaAdminEmailAddress');
my ($template, $loggedinuser, $cookie)
= get_template_and_user({template_name => "errors/401.tmpl",
query => $query,
type => "intranet",
authnotrequired => 0,
flagsrequired => {catalogue => 1},
debug => 1,
});
$template->param( admin => $admin);
output_html_with_http_headers $query, $cookie, $template->output;