[Koha-cvs] koha/C4/Circulation Circ2.pm [dev_week]

Joshua Ferraro jmf at kados.org
Tue Jul 11 16:19:43 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		dev_week
Changes by:	Joshua Ferraro <kados>	06/07/11 14:19:43

Modified files:
	C4/Circulation : Circ2.pm 

Log message:
	sync with rel_2_2

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Circulation/Circ2.pm?cvsroot=koha&only_with_tag=dev_week&r1=1.87.2.14.2.3&r2=1.87.2.14.2.4

Patches:
Index: Circ2.pm
===================================================================
RCS file: /sources/koha/koha/C4/Circulation/Circ2.pm,v
retrieving revision 1.87.2.14.2.3
retrieving revision 1.87.2.14.2.4
diff -u -b -r1.87.2.14.2.3 -r1.87.2.14.2.4
--- Circ2.pm	11 Jul 2006 13:29:51 -0000	1.87.2.14.2.3
+++ Circ2.pm	11 Jul 2006 14:19:43 -0000	1.87.2.14.2.4
@@ -3,7 +3,7 @@
 
 package C4::Circulation::Circ2;
 
-# $Id: Circ2.pm,v 1.87.2.14.2.3 2006/07/11 13:29:51 kados Exp $
+# $Id: Circ2.pm,v 1.87.2.14.2.4 2006/07/11 14:19:43 kados Exp $
 
 #package to deal with Returns
 #written 3/11/99 by olwen at katipo.co.nz
@@ -698,7 +698,7 @@
 	#check for borrowertype=*;branch=""
 	$sth->execute("*", $type, "");
 	my $result = $sth->fetchrow_hashref;
-	if (defined($result) && $result->{maxissueqty}>=0) {
+	if (defined($result) && $result->{maxissueqty} ge 0) {
 		$sth2->execute($borrower->{'borrowernumber'}, "%$type%");
 		my $alreadyissued = $sth2->fetchrow;
 	  if (defined($result->{maxissueqty})) {





More information about the Koha-cvs mailing list