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

(-)a/C4/Circulation.pm (-1 / +2 lines)
Lines 2959-2964 sub CanBookBeRenewed { Link Here
2959
            notforloan   => 0,
2959
            notforloan   => 0,
2960
            -not         => { itemnumber => $itemnumber } })->as_list;
2960
            -not         => { itemnumber => $itemnumber } })->as_list;
2961
2961
2962
        return ( 0, "on_reserve" ) if scalar @other_items < scalar @possible_holds;
2963
2962
        my %matched_items;
2964
        my %matched_items;
2963
        foreach my $possible_hold (@possible_holds) {
2965
        foreach my $possible_hold (@possible_holds) {
2964
            my $fillable = 0;
2966
            my $fillable = 0;
2965
- 

Return to bug 31112