Koha/koha-tmpl/errors/500.pl
2007-03-09 14:41:32 +00:00

21 lines
499 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;
my $query = new CGI;
my $admin = C4::Context->preference('KohaAdminEmailAddress');
my ($template, $loggedinuser, $cookie)
= get_template_and_user({template_name => "errors/500.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
debug => 1,
});
$template->param( admin => $admin);
output_html_with_http_headers $query, $cookie, $template->output;