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 opac-MARCdetail.pl


From: Henri-Damien LAURENT
Subject: [Koha-cvs] koha/opac opac-ISBDdetail.pl opac-MARCdetail.pl
Date: Tue, 22 May 2007 08:55:08 +0000

CVSROOT:        /cvsroot/koha
Module name:    koha
Changes by:     Henri-Damien LAURENT <hdl>      07/05/22 08:55:08

Modified files:
        opac           : opac-ISBDdetail.pl opac-MARCdetail.pl 

Log message:
        Changing GetMarcStructure signature.
        Deleting first parameter $dbh

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/opac/opac-ISBDdetail.pl?cvsroot=koha&r1=1.20&r2=1.21
http://cvs.savannah.gnu.org/viewcvs/koha/opac/opac-MARCdetail.pl?cvsroot=koha&r1=1.18&r2=1.19

Patches:
Index: opac-ISBDdetail.pl
===================================================================
RCS file: /cvsroot/koha/koha/opac/opac-ISBDdetail.pl,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- opac-ISBDdetail.pl  24 Apr 2007 13:54:29 -0000      1.20
+++ opac-ISBDdetail.pl  22 May 2007 08:55:07 -0000      1.21
@@ -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-ISBDdetail.pl,v 1.20 2007/04/24 13:54:29 hdl Exp $
+# $Id: opac-ISBDdetail.pl,v 1.21 2007/05/22 08:55:07 hdl Exp $
 
 =head1 NAME
 
@@ -62,7 +62,7 @@
 
 my $biblionumber = $query->param('biblionumber');
 my $itemtype     = &GetFrameworkCode($biblionumber);
-my $tagslib      = &GetMarcStructure( $dbh, 1, $itemtype );
+my $tagslib      = &GetMarcStructure( 1, $itemtype );
 
 my $record = GetMarcBiblio($biblionumber);
 

Index: opac-MARCdetail.pl
===================================================================
RCS file: /cvsroot/koha/koha/opac/opac-MARCdetail.pl,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- opac-MARCdetail.pl  27 Apr 2007 14:00:48 -0000      1.18
+++ opac-MARCdetail.pl  22 May 2007 08:55:08 -0000      1.19
@@ -56,7 +56,7 @@
 
 my $biblionumber = $query->param('biblionumber');
 my $itemtype     = &GetFrameworkCode($biblionumber);
-my $tagslib      = &GetMarcStructure( $dbh, 0, $itemtype );
+my $tagslib      = &GetMarcStructure( 0, $itemtype );
 
 my $record = GetMarcBiblio($biblionumber);
 




reply via email to

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