View | Details | Raw Unified | Return to bug 40771
Collapse All | Expand All

(-)a/circ/returns.pl (-2 / +2 lines)
Lines 155-161 if ( $query->param('reserve_id') && $op eq 'cud-affect_reserve' ) { Link Here
155
            my $tobranch = $hold->pickup_library();
155
            my $tobranch = $hold->pickup_library();
156
156
157
            # Add transfer, enqueue if one is already in the queue, and immediately set to in transit
157
            # Add transfer, enqueue if one is already in the queue, and immediately set to in transit
158
            my $transfer = $item->request_transfer( { to => $tobranch, reason => 'Reserve', enqueue => 1 } );
158
            my $transfer =
159
                $item->request_transfer( { to => $tobranch, reason => 'Reserve', enqueue => 1, ignore_limits => 1 } );
159
            $transfer->transit;
160
            $transfer->transit;
160
        }
161
        }
161
    }
162
    }
162
- 

Return to bug 40771