From afaa75071b6b2b24b77299fb915c7f4f9dd7c479 Mon Sep 17 00:00:00 2001 From: doxulting Date: Fri, 30 Jul 2004 14:01:01 +0000 Subject: [PATCH] The main serial menu. Its provides links for other options --- bull-home.pl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 bull-home.pl diff --git a/bull-home.pl b/bull-home.pl new file mode 100755 index 0000000000..ec59df54c3 --- /dev/null +++ b/bull-home.pl @@ -0,0 +1,20 @@ +#!/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 ($template, $loggedinuser, $cookie) += get_template_and_user({template_name => "bull/bull-home.tmpl", + query => $query, + type => "intranet", + authnotrequired => 0, + flagsrequired => {catalogue => 1}, + debug => 1, + }); +output_html_with_http_headers $query, $cookie, $template->output; -- 2.39.5