force undef fuflillment time filter on holds_by_title retrieval
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 20 May 2009 19:56:47 +0000 (19:56 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 20 May 2009 19:56:47 +0000 (19:56 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_4@13208 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Circ/Holds.pm

index 1208daf..712de32 100644 (file)
@@ -1559,7 +1559,8 @@ sub all_rec_holds {
        $e->checkauth or return $e->event;
        $e->allowed('VIEW_HOLD') or return $e->event;
 
-       $args ||= { fulfillment_time => undef };
+       $args ||= {};
+    $args->{fulfillment_time} = undef; #  we don't want to see old fulfilled holds
        $args->{cancel_time} = undef;
 
        my $resp = { volume_holds => [], copy_holds => [] };