[open-ils-commits] r16838 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ (gmc)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jun 30 22:06:29 EDT 2010


Author: gmc
Date: 2010-06-30 22:06:27 -0400 (Wed, 30 Jun 2010)
New Revision: 16838

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm
Log:
bug #600021: fix lookup of FIFO holds OU setting

Patch from Anoop Atre that fixes enabling FIFO
holds via the circ.holds_fifo org unit setting.

Signed-off-by: Galen Charlton <gmc at esilibrary.com>


Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm	2010-06-30 23:06:15 UTC (rev 16837)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm	2010-07-01 02:06:27 UTC (rev 16838)
@@ -1993,7 +1993,7 @@
 	$logger->info("circulator: searching for best hold at org ".$user->ws_ou.
         " and copy $bc with a hold stalling interval of ". ($hold_stall_interval || "(none)"));
 
-	my $fifo = $U->ou_ancestor_setting_value($user->ws_ou, 'circ.hold_fifo');
+	my $fifo = $U->ou_ancestor_setting_value($user->ws_ou, 'circ.holds_fifo');
 
 	# search for what should be the best holds for this copy to fulfill
 	my $best_holds = $U->storagereq(



More information about the open-ils-commits mailing list