[open-ils-commits] r9197 - branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Circ

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Apr 2 16:28:07 EDT 2008


Author: erickson
Date: 2008-04-02 15:51:42 -0400 (Wed, 02 Apr 2008)
New Revision: 9197

Modified:
   branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm
Log:
using boolean test wrapper function

Modified: branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm
===================================================================
--- branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm	2008-04-02 18:26:56 UTC (rev 9196)
+++ branches/rel_1_2/Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm	2008-04-02 19:51:42 UTC (rev 9197)
@@ -149,7 +149,7 @@
 	$conn->respond_complete(1);
 
     for(@holds) {
-        next if $_->frozen;
+        next if $U->is_true($_->frozen);
 	    $U->storagereq(
 		    'open-ils.storage.action.hold_request.copy_targeter', 
 		    undef, $_->id );



More information about the open-ils-commits mailing list