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

(-)a/C4/Reserves.pm (-1 / +1 lines)
Lines 261-266 sub AddReserve { Link Here
261
    )->store();
261
    )->store();
262
    $hold->set_waiting() if $found && $found eq 'W';
262
    $hold->set_waiting() if $found && $found eq 'W';
263
263
264
    $hold->discard_changes();
264
    logaction( 'HOLDS', 'CREATE', $hold->id, Dumper($hold->unblessed) )
265
    logaction( 'HOLDS', 'CREATE', $hold->id, Dumper($hold->unblessed) )
265
        if C4::Context->preference('HoldsLog');
266
        if C4::Context->preference('HoldsLog');
266
267
267
- 

Return to bug 29192