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

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

Return to bug 30180