[Koha-cvs] koha/C4 Biblio.pm [rel_2_2]

paul poulain paul at koha-fr.org
Thu Aug 3 18:10:54 CEST 2006


CVSROOT:	/cvsroot/koha
Module name:	koha
Branch:		rel_2_2
Changes by:	paul poulain <tipaul>	06/08/03 16:10:54

Modified files:
	C4             : Biblio.pm 

Log message:
	fix for 1052 : Major Bug in MARC tables Sync

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Biblio.pm?cvsroot=koha&only_with_tag=rel_2_2&r1=1.115.2.58&r2=1.115.2.59

Patches:
Index: Biblio.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Biblio.pm,v
retrieving revision 1.115.2.58
retrieving revision 1.115.2.59
diff -u -b -r1.115.2.58 -r1.115.2.59
--- Biblio.pm	19 Jun 2006 13:18:17 -0000	1.115.2.58
+++ Biblio.pm	3 Aug 2006 16:10:53 -0000	1.115.2.59
@@ -26,7 +26,7 @@
 use vars qw($VERSION @ISA @EXPORT);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.115.2.58 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.115.2.59 $' =~ /\d+/g;
                     shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
 
 @ISA = qw(Exporter);
@@ -710,6 +710,8 @@
       $dbh->prepare(
         "delete from marc_subfield_table where bibid=? and tagorder=?");
     $sth->execute( $bibid, $tagorder );
+    $sth = $dbh->prepare("delete from marc_word where bibid=? and tagorder=?");
+    $sth->execute( $bibid, $tagorder );
 }
 
 sub MARCmoditem {
@@ -3008,8 +3010,11 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.115.2.58 2006/06/19 13:18:17 tipaul Exp $
+# $Id: Biblio.pm,v 1.115.2.59 2006/08/03 16:10:53 tipaul Exp $
 # $Log: Biblio.pm,v $
+# Revision 1.115.2.59  2006/08/03 16:10:53  tipaul
+# fix for 1052 : Major Bug in MARC tables Sync
+#
 # Revision 1.115.2.58  2006/06/19 13:18:17  tipaul
 # reverting cloneTag bugs (see joshua mail on koha-devel) :
 # * going back to a previous version, with server call to clone a Tag





More information about the Koha-cvs mailing list