[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/C4/Circulation Circ2.pm [dev_week]
From: |
Joshua Ferraro |
Subject: |
[Koha-cvs] koha/C4/Circulation Circ2.pm [dev_week] |
Date: |
Tue, 05 Dec 2006 20:36:17 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: dev_week
Changes by: Joshua Ferraro <kados> 06/12/05 20:36:17
Modified files:
C4/Circulation : Circ2.pm
Log message:
merging NPL with dev_week
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.10&r2=1.87.2.14.2.11
Patches:
Index: Circ2.pm
===================================================================
RCS file: /sources/koha/koha/C4/Circulation/Circ2.pm,v
retrieving revision 1.87.2.14.2.10
retrieving revision 1.87.2.14.2.11
diff -u -b -r1.87.2.14.2.10 -r1.87.2.14.2.11
--- Circ2.pm 24 Sep 2006 20:00:04 -0000 1.87.2.14.2.10
+++ Circ2.pm 5 Dec 2006 20:36:17 -0000 1.87.2.14.2.11
@@ -3,7 +3,7 @@
package C4::Circulation::Circ2;
-# $Id: Circ2.pm,v 1.87.2.14.2.10 2006/09/24 20:00:04 kados Exp $
+# $Id: Circ2.pm,v 1.87.2.14.2.11 2006/12/05 20:36:17 kados Exp $
#package to deal with Returns
#written 3/11/99 by address@hidden
@@ -475,7 +475,9 @@
# check if it is still issued to someone, return it...
my ($currentborrower) =
currentborrower($iteminformation->{'itemnumber'});
if ($currentborrower) {
- returnbook($barcode, $fbr);
+ # I get an error slowing down the system for deep recursion so
I'm commenting
+ # this out -- JF
+ #returnbook($barcode, $fbr);
$messages->{'WasReturned'} = $currentborrower;
}
# find reserves.....
@@ -1329,6 +1331,7 @@
$flaginfo{'itemlist'} = $itemswaiting;
$flags{'WAITING'} = \%flaginfo;
}
+
return(\%flags);
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha/C4/Circulation Circ2.pm [dev_week],
Joshua Ferraro <=