squash me to 7e8f0c6; filtered recs syntax repair
authorBill Erickson <berick@esilibrary.com>
Fri, 14 Feb 2014 21:56:48 +0000 (16:56 -0500)
committerMike Rylander <mrylander@gmail.com>
Mon, 17 Feb 2014 18:52:03 +0000 (13:52 -0500)
Signed-off-by: Bill Erickson <berick@esilibrary.com>
Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm

index 54ff334..fe1448d 100644 (file)
@@ -1312,7 +1312,7 @@ sub MR_records_matching_format {
     for my $r ( map { isTrue($_->deleted) ?  () : ($_->id) } @$records ) {
         # the map{} below is tricky. it puts the record ID in front of each param. see $q above
         $client->respond($r)
-            if @{action::hold_request->db_Main->selectcol_arrayref( $q {}, map { ( $r => $_ ) } @args )};
+            if @{action::hold_request->db_Main->selectcol_arrayref( $q, {}, map { ( $r => $_ ) } @args )};
     }
 
     return; # discard final l-val