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

(-)a/C4/Reserves.pm (-2 / +1 lines)
Lines 1345-1351 sub IsAvailableForItemLevelRequest { Link Here
1345
    # FIXME - a lot of places in the code do this
1345
    # FIXME - a lot of places in the code do this
1346
    #         or something similar - need to be
1346
    #         or something similar - need to be
1347
    #         consolidated
1347
    #         consolidated
1348
    my $itemtype = $item->effective_itemtype;
1348
    my $itemtype = $item->effective_itemtype or return 0;
1349
    my $notforloan_per_itemtype = Koha::ItemTypes->find($itemtype)->notforloan;
1349
    my $notforloan_per_itemtype = Koha::ItemTypes->find($itemtype)->notforloan;
1350
1350
1351
    return 0 if
1351
    return 0 if
1352
- 

Return to bug 29553