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

(-)a/C4/Reserves.pm (-2 / +1 lines)
Lines 870-876 sub AutoUnsuspendReserves { Link Here
870
870
871
    my @holds = Koha::Holds->search( { suspend_until => { '<=' => $today->ymd() } } );
871
    my @holds = Koha::Holds->search( { suspend_until => { '<=' => $today->ymd() } } );
872
872
873
    map { $_->suspend(0)->suspend_until(undef)->store() } @holds;
873
    map { $_->resume() } @holds;
874
}
874
}
875
875
876
=head2 ModReserve
876
=head2 ModReserve
877
- 

Return to bug 21765