For catalyst/template_test branch. There are still issues with displaying biblios.
[koha.git] / opac / sco / help.pl
blobb2cbd003d432abbb2d7fba7b897f6ae1096d0a31
1 #!/usr/bin/perl
3 # This code (originally from circulation.pl) has been modified by:
4 # Trendsetters,
5 # dan, and
6 # Christina Lee.
8 use strict;
9 use warnings;
10 use CGI;
12 use C4::Auth qw(get_template_and_user);
13 use C4::Output qw(output_html_with_http_headers);
15 my $query = new CGI;
16 my ($template, $borrowernumber, $cookie) = get_template_and_user({
17 template_name => "sco/help.tmpl",
18 query => $query,
19 type => "opac",
20 debug => 1,
21 authnotrequired => 1,
22 flagsrequired => {circulate => "circulate_remaining_permissions"},
23 });
25 output_html_with_http_headers $query, $cookie, $template->output;