[Koha-cvs] koha/circ branchreserves.pl

paul poulain paul at koha-fr.org
Tue Apr 17 10:44:49 CEST 2007


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	paul poulain <tipaul>	07/04/17 08:44:49

Modified files:
	circ           : branchreserves.pl 

Log message:
	circulation cleaning continued: bufixing

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/circ/branchreserves.pl?cvsroot=koha&r1=1.6&r2=1.7

Patches:
Index: branchreserves.pl
===================================================================
RCS file: /sources/koha/koha/circ/branchreserves.pl,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- branchreserves.pl	4 Apr 2007 16:46:23 -0000	1.6
+++ branchreserves.pl	17 Apr 2007 08:44:49 -0000	1.7
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: branchreserves.pl,v 1.6 2007/04/04 16:46:23 tipaul Exp $
+# $Id: branchreserves.pl,v 1.7 2007/04/17 08:44:49 tipaul Exp $
 
 # Copyright 2000-2002 Katipo Communications
 #
@@ -27,6 +27,8 @@
 use C4::Auth;
 use C4::Date;
 use C4::Circulation;
+use C4::Members;
+use C4::Biblio;
 
 use Date::Calc qw(
   Today
@@ -103,7 +105,7 @@
 
 # 		if the document is not in his homebranch location and there is not reservation after, we transfer it
     if ( ( $fbr ne $tbr ) and ( not $nextreservinfo ) ) {
-        C4::Circulation::Circ2::dotransfer( $item, $fbr, $tbr );
+        dotransfer( $item, $fbr, $tbr );
     }
 }
 





More information about the Koha-cvs mailing list