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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 2577-2583 sub _calculate_new_debar_dt { Link Here
2577
    my $circcontrol = C4::Context->preference('CircControl');
2577
    my $circcontrol = C4::Context->preference('CircControl');
2578
    my $issuing_rule = Koha::CirculationRules->get_effective_rules(
2578
    my $issuing_rule = Koha::CirculationRules->get_effective_rules(
2579
        {   categorycode => $patron->categorycode,
2579
        {   categorycode => $patron->categorycode,
2580
            itemtype     => $item->{itype},
2580
            itemtype     => $item->effective_itemtype,
2581
            branchcode   => $branchcode,
2581
            branchcode   => $branchcode,
2582
            rules => [
2582
            rules => [
2583
                'finedays',
2583
                'finedays',
2584
- 

Return to bug 31735