[Koha-cvs] koha/C4 Biblio.pm

Joshua Ferraro jmf at kados.org
Thu Feb 16 21:49:56 CET 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	
Changes by:	Joshua Ferraro <kados at savannah.gnu.org>	06/02/16 20:49:56

Modified files:
	C4             : Biblio.pm 

Log message:
	destroy a connection after we're done -- we really should just have one
	connection object and not destroy it until the whole transaction is
	finished -- but this will do for now

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/C4/Biblio.pm.diff?tr1=1.141&tr2=1.142&r1=text&r2=text

Patches:
Index: koha/C4/Biblio.pm
diff -u koha/C4/Biblio.pm:1.141 koha/C4/Biblio.pm:1.142
--- koha/C4/Biblio.pm:1.141	Thu Feb 16 19:47:22 2006
+++ koha/C4/Biblio.pm	Thu Feb 16 20:49:56 2006
@@ -178,6 +178,7 @@
 	    $Zpackage->option(action => "specialUpdate");        
 	    $Zpackage->option(record => $xmlrecord);
 	    $Zpackage->send("update");
+	    $Zpackage->destroy;
 	}
 }
 
@@ -2940,8 +2941,13 @@
 
 =cut
 
-# $Id: Biblio.pm,v 1.141 2006/02/16 19:47:22 rangi Exp $
+# $Id: Biblio.pm,v 1.142 2006/02/16 20:49:56 kados Exp $
 # $Log: Biblio.pm,v $
+# Revision 1.142  2006/02/16 20:49:56  kados
+# destroy a connection after we're done -- we really should just have one
+# connection object and not destroy it until the whole transaction is
+# finished -- but this will do for now
+#
 # Revision 1.141  2006/02/16 19:47:22  rangi
 # Trying to error trap a little more.
 #





More information about the Koha-cvs mailing list