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

(-)a/C4/Reserves.pm (-1 / +7 lines)
Lines 306-311 sub AddReserve { Link Here
306
    }
306
    }
307
307
308
    Koha::Plugins->call('after_hold_create', $hold);
308
    Koha::Plugins->call('after_hold_create', $hold);
309
    Koha::Plugins->call(
310
        'after_hold_action',
311
        {
312
            action  => 'place',
313
            payload => { hold => $hold->get_from_storage }
314
        }
315
    );
309
316
310
    return $reserve_id;
317
    return $reserve_id;
311
}
318
}
312
- 

Return to bug 30180