From de88b3b40651ea95cc710a6dcc5a8902cde4d1dc Mon Sep 17 00:00:00 2001 From: acli Date: Wed, 5 Feb 2003 08:30:27 +0000 Subject: [PATCH] Added missing "use" statement Noted correct tab size Note: this script does not actually work yet --- opac/opac-reserve.pl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl index 5233e9b1ff..3d6217ae5d 100755 --- a/opac/opac-reserve.pl +++ b/opac/opac-reserve.pl @@ -1,4 +1,6 @@ #!/usr/bin/perl +# NOTE: This file uses standard 8-character tabs + use strict; require Exporter; use CGI; @@ -8,6 +10,7 @@ use C4::Auth; # checkauth, getborrowernumber. use C4::Koha; use C4::Circulation::Circ2; use C4::Reserves2; +use C4::Interface::CGI::Output; use HTML::Template; my $MAXIMUM_NUMBER_OF_RESERVES = 5; @@ -226,3 +229,7 @@ $template->param(BIBLIOITEMS => \@data); output_html_with_http_headers $query, $cookie, $template->output; + +# Local Variables: +# tab-width: 8 +# End: -- 2.39.5