[Koha-cvs] koha/catalogue detail.pl

Antoine Farnault antoine at koha-fr.org
Thu Aug 10 15:31:22 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Antoine Farnault <toins>	06/08/10 13:31:22

Modified files:
	catalogue      : detail.pl 

Log message:
	C4::SearchMarc replaced by C4::Search

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/catalogue/detail.pl?cvsroot=koha&r1=1.5&r2=1.6

Patches:
Index: detail.pl
===================================================================
RCS file: /sources/koha/koha/catalogue/detail.pl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- detail.pl	21 Jul 2006 10:12:56 -0000	1.5
+++ detail.pl	10 Aug 2006 13:31:22 -0000	1.6
@@ -7,7 +7,7 @@
 use C4::Interface::CGI::Output;
 use HTML::Template;
 use C4::Biblio;
-use C4::SearchMarc;
+use C4::Search;
 
 my $query=new CGI;
 my ($template, $borrowernumber, $cookie) 
@@ -28,7 +28,7 @@
 # change back when ive fixed request.pl
 my @items                                 = &ItemInfo(undef, $biblionumber, 'intra');
 my $dat                                   = &bibdata($biblionumber);
-my ($authorcount, $addauthor)             = &getaddauthor($biblionumber);
+my ($authorcount, $addauthor)             = &addauthor($biblionumber);
 my ($webbiblioitemcount, @webbiblioitems) = &getwebbiblioitems($biblionumber);
 my ($websitecount, @websites)             = &getwebsites($biblionumber);
 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);





More information about the Koha-cvs mailing list