From b74d8782f3954ba39b3f735423a9b2f732704ffc Mon Sep 17 00:00:00 2001 From: tipaul Date: Tue, 17 Jan 2006 16:43:39 +0000 Subject: [PATCH] moving report home to reports directory --- reports/reports-home.pl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 reports/reports-home.pl diff --git a/reports/reports-home.pl b/reports/reports-home.pl new file mode 100644 index 0000000000..a220183ca2 --- /dev/null +++ b/reports/reports-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 => "reports/reports-home.tmpl", + query => $query, + type => "intranet", + authnotrequired => 0, + flagsrequired => {catalogue => 1}, + debug => 1, + }); +output_html_with_http_headers $query, $cookie, $template->output;