koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] koha/opac opac-ISBDdetail.pl


From: Chris Cormack
Subject: [Koha-cvs] koha/opac opac-ISBDdetail.pl
Date: Tue, 21 Feb 2006 00:11:06 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         
Changes by:     Chris Cormack <address@hidden>  06/02/21 00:11:06

Modified files:
        opac           : opac-ISBDdetail.pl 

Log message:
        Using get_record() from C4::Search now (ie fetching the record from 
zebra)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/opac/opac-ISBDdetail.pl.diff?tr1=1.11&tr2=1.12&r1=text&r2=text

Patches:
Index: koha/opac/opac-ISBDdetail.pl
diff -u koha/opac/opac-ISBDdetail.pl:1.11 koha/opac/opac-ISBDdetail.pl:1.12
--- koha/opac/opac-ISBDdetail.pl:1.11   Fri Jan  6 16:39:42 2006
+++ koha/opac/opac-ISBDdetail.pl        Tue Feb 21 00:11:06 2006
@@ -65,12 +65,13 @@
 
 my $biblionumber=$query->param('bib');
 my $bibid = $query->param('bibid');
-$bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless 
$bibid;
-$biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless 
$biblionumber;
-my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
+#$bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless 
$bibid;
+#$biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless 
$biblionumber;
+#my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
+my $itemtype="";
 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
 
-my $record =MARCgetbiblio($dbh,$bibid);
+my $record =get_record($biblionumber);
 
 #coping with subscriptions
 my $subscriptionsnumber = getsubscriptionfrombiblionumber($biblionumber);




reply via email to

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