21 lines
440 B
Perl
Executable file
21 lines
440 B
Perl
Executable file
#!/usr/bin/perl
|
|
use strict;
|
|
require Exporter;
|
|
use CGI;
|
|
|
|
use C4::Output; # gettemplate
|
|
use C4::Auth; # checkauth
|
|
|
|
my $query = new CGI;
|
|
|
|
my $flagsrequired;
|
|
$flagsrequired->{borrow}=1;
|
|
|
|
my ($loggedinuser, $cookie, $sessionID) = checkauth($query, 1, $flagsrequired);
|
|
|
|
|
|
my $template = gettemplate("opac-main.tmpl", "opac");
|
|
|
|
$template->param(loggedinuser => $loggedinuser);
|
|
|
|
print "Content-Type: text/html\n\n", $template->output;
|