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

LAURIN arnaud alaurin at ouestprovence.fr
Mon Dec 4 18:39:58 CET 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_3_0
Changes by:	LAURIN arnaud <alaurin>	06/12/04 17:39:58

Modified files:
	C4             : Biblio.pm 

Log message:
	bugfix :
	
	restore zebraop for update zebra

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Biblio.pm?cvsroot=koha&only_with_tag=rel_3_0&r1=1.178.2.31&r2=1.178.2.32

Patches:
Index: Biblio.pm
===================================================================
RCS file: /sources/koha/koha/C4/Biblio.pm,v
retrieving revision 1.178.2.31
retrieving revision 1.178.2.32
diff -u -b -r1.178.2.31 -r1.178.2.32
--- Biblio.pm	1 Dec 2006 17:00:19 -0000	1.178.2.31
+++ Biblio.pm	4 Dec 2006 17:39:57 -0000	1.178.2.32
@@ -34,7 +34,7 @@
 use vars qw($VERSION @ISA @EXPORT);
 
 # set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.178.2.31 $' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
+$VERSION = do { my @v = '$Revision: 1.178.2.32 $' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
 
 @ISA = qw(Exporter);
 
@@ -473,7 +473,7 @@
     #if ( (C4::Context->preference("commitImmediately")) ) {
     $error = &z3950_extended_services("biblioserver","commit");
     #}
-    #zebraop($dbh,$biblionumber,"recordDelete","biblioserver");
+    zebraop($dbh,$biblionumber,"recordDelete","biblioserver");
     return $error if $error;
 
     # delete biblio from Koha tables and save in deletedbiblio
@@ -837,7 +837,7 @@
     $sth->execute( $record->as_usmarc(),$record->as_xml_record() , $biblionumber);
     warn $record->as_xml_record();
     $sth->finish;
-    #&zebraop($dbh,$biblionumber,"specialUpdate","biblioserver");
+    zebraop($dbh,$biblionumber,"specialUpdate","biblioserver");
     return $biblionumber;
 }
 
@@ -3979,8 +3979,13 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.178.2.31 2006/12/01 17:00:19 tipaul Exp $
+# $Id: Biblio.pm,v 1.178.2.32 2006/12/04 17:39:57 alaurin Exp $
 # $Log: Biblio.pm,v $
+# Revision 1.178.2.32  2006/12/04 17:39:57  alaurin
+# bugfix :
+#
+# restore zebraop for update zebra
+#
 # Revision 1.178.2.31  2006/12/01 17:00:19  tipaul
 # additem needs $frameworkcode
 #





More information about the Koha-cvs mailing list