@@ -, +, @@ ReservesNeedReturns commit 26634151dbce0bf39ff6c9eda5b58bb993996a2d Bug 12063 - Fix QA failures --- C4/Reserves.pm | 1 + 1 file changed, 1 insertion(+) --- a/C4/Reserves.pm +++ a/C4/Reserves.pm @@ -203,6 +203,7 @@ sub AddReserve { itemtype => $itemtype, } )->store(); + $hold->set_waiting() if $found eq 'W'; logaction( 'HOLDS', 'CREATE', $hold->id, Dumper($hold->unblessed) ) if C4::Context->preference('HoldsLog'); --