koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha/opac opac-detail.pl opac-dictionary.pl


From: Antoine Farnault
Subject: [Koha-cvs] koha/opac opac-detail.pl opac-dictionary.pl
Date: Fri, 11 Aug 2006 16:08:28 +0000

CVSROOT:        /sources/koha
Module name:    koha
Changes by:     Antoine Farnault <toins>        06/08/11 16:08:28

Modified files:
        opac           : opac-detail.pl opac-dictionary.pl 

Log message:
        use C4::Search; replace use C4::SearchMarc;

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/opac/opac-detail.pl?cvsroot=koha&r1=1.31&r2=1.32
http://cvs.savannah.gnu.org/viewcvs/koha/opac/opac-dictionary.pl?cvsroot=koha&r1=1.3&r2=1.4

Patches:
Index: opac-detail.pl
===================================================================
RCS file: /sources/koha/koha/opac/opac-detail.pl,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -b -r1.31 -r1.32
--- opac-detail.pl      12 Jul 2006 17:19:39 -0000      1.31
+++ opac-detail.pl      11 Aug 2006 16:08:28 -0000      1.32
@@ -17,7 +17,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: opac-detail.pl,v 1.31 2006/07/12 17:19:39 toins Exp $
+# $Id: opac-detail.pl,v 1.32 2006/08/11 16:08:28 toins Exp $
 
 use strict;
 require Exporter;
@@ -27,7 +27,7 @@
 use C4::Interface::CGI::Output;
 use HTML::Template;
 use C4::Biblio;
-use C4::SearchMarc;
+use C4::Search;
 use C4::Amazon;
 use C4::Review;
 
@@ -48,10 +48,9 @@
 # change back when ive fixed request.pl
 my @items = &ItemInfo( undef, $biblionumber, 'opac' );
 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);
 
 #coping with subscriptions
 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);

Index: opac-dictionary.pl
===================================================================
RCS file: /sources/koha/koha/opac/opac-dictionary.pl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- opac-dictionary.pl  4 Jul 2006 14:36:52 -0000       1.3
+++ opac-dictionary.pl  11 Aug 2006 16:08:28 -0000      1.4
@@ -24,7 +24,6 @@
 use C4::Auth;
 use CGI;
 use C4::Search;
-use C4::SearchMarc;
 use C4::AuthoritiesMarc;
 use C4::Context;
 use C4::Biblio;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]