From c0a9492149e14abaabfda3ad2ef7cd2566d38d04 Mon Sep 17 00:00:00 2001 From: rangi Date: Mon, 21 Apr 2003 02:58:58 +0000 Subject: [PATCH] Fixing internal server error --- delbiblio.pl | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/delbiblio.pl b/delbiblio.pl index 8c86528545..d052bbb978 100755 --- a/delbiblio.pl +++ b/delbiblio.pl @@ -27,7 +27,6 @@ use strict; use C4::Search; use CGI; use C4::Output; -#use C4::Acquisitions; # FIXME - Doesn't exist anymore use C4::Biblio; my $input = new CGI; @@ -35,11 +34,8 @@ my $input = new CGI; my $biblio=$input->param('biblio'); -#print $input->header; -#check no items attached -# FIXME - C4::Acquisitions no longer exists. Should this be -# &C4::Search::itemcount, or &C4::Biblio::itemcount? -my $count=C4::Acquisitions::itemcount($biblio); +# check no items attached +my $count=C4::Biblio::itemcount($biblio); #print $count; -- 2.39.5