@@ -, +, @@ ReservesNeedReturns commit 26634151dbce0bf39ff6c9eda5b58bb993996a2d Bug 12063 - Fix QA failures record page → Hold → "Expiration" column (which should also behave like we check the item in to keep it for the patron) record page → Hold → "Expiration" column staff:/cgi-bin/koha/circ/waitingreserves.pl record page → Hold → the red X --- 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'); --