From 52ad82bc9aae47c87e0e814d2a22fd317fe172b6 Mon Sep 17 00:00:00 2001 From: tipaul Date: Wed, 19 Mar 2003 15:14:42 +0000 Subject: [PATCH] fixes missing use C4::Interface::CGI::Output; at beginning --- opac/opac-membership.pl | 1 + opac/opac-readingrecord.pl | 1 + opac/opac-reserve.pl | 3 --- opac/opac-userdetails.pl | 1 + 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/opac/opac-membership.pl b/opac/opac-membership.pl index 20f04069bc..623acde94a 100644 --- a/opac/opac-membership.pl +++ b/opac/opac-membership.pl @@ -4,6 +4,7 @@ require Exporter; use CGI; use C4::Auth; # get_template_and_user use HTML::Template; +use C4::Interface::CGI::Output; my $query = new CGI; diff --git a/opac/opac-readingrecord.pl b/opac/opac-readingrecord.pl index b0eb1783cb..c2cfa403e8 100755 --- a/opac/opac-readingrecord.pl +++ b/opac/opac-readingrecord.pl @@ -8,6 +8,7 @@ use C4::Koha; use C4::Circulation::Circ2; use C4::Search; use HTML::Template; +use C4::Interface::CGI::Output; my $query = new CGI; my ($template, $borrowernumber, $cookie) diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl index 5b80176394..ff54f0571e 100755 --- a/opac/opac-reserve.pl +++ b/opac/opac-reserve.pl @@ -256,9 +256,6 @@ if ($query->param('item_types_selected')) { # check that you can actually make the reserve. -# $template->param(BIBLIOITEMS => \@data); - - output_html_with_http_headers $query, $cookie, $template->output; # Local Variables: diff --git a/opac/opac-userdetails.pl b/opac/opac-userdetails.pl index a476bf0321..5f98d19246 100755 --- a/opac/opac-userdetails.pl +++ b/opac/opac-userdetails.pl @@ -8,6 +8,7 @@ use C4::Koha; use C4::Circulation::Circ2; use C4::Search; use HTML::Template; +use C4::Interface::CGI::Output; my $query = new CGI; my ($template, $borrowernumber, $cookie) -- 2.39.5