Koha/tools/tools-home.pl
2006-09-27 21:19:21 +00:00

19 lines
438 B
Perl
Executable file

#!/usr/bin/perl
use strict;
use CGI;
use C4::Auth;
use C4::Interface::CGI::Output;
my $query = new CGI;
my ($template, $loggedinuser, $cookie)
= get_template_and_user({template_name => "tools/tools-home.tmpl",
query => $query,
type => "intranet",
authnotrequired => 0,
flagsrequired => {tools => 1},
debug => 1,
});
output_html_with_http_headers $query, $cookie, $template->output;