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

(-)a/C4/Circulation.pm (-2 / +4 lines)
Lines 2950-2956 sub CanBookBeRenewed { Link Here
2950
    {
2950
    {
2951
        my $biblio = Koha::Biblios->find($item->biblionumber);
2951
        my $biblio = Koha::Biblios->find($item->biblionumber);
2952
        my @possible_holds = $biblio->current_holds->unfilled->search(
2952
        my @possible_holds = $biblio->current_holds->unfilled->search(
2953
            {non_priority => 0},
2953
            {
2954
                non_priority => 0,
2955
                suspend      => 0,
2956
            },
2954
            { prefetch => 'patron' }
2957
            { prefetch => 'patron' }
2955
        )->as_list;
2958
        )->as_list;
2956
2959
2957
- 

Return to bug 31436