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

(-)a/Koha/Patron.pm (-2 / +1 lines)
Lines 876-882 sub do_check_for_previous_checkout { Link Here
876
    # Create (old)issues search criteria
876
    # Create (old)issues search criteria
877
    my $criteria = {
877
    my $criteria = {
878
        borrowernumber => $self->borrowernumber,
878
        borrowernumber => $self->borrowernumber,
879
        itemnumber     => \@item_nos,
879
        itemnumber     => { -in => \@item_nos },
880
    };
880
    };
881
881
882
    # Check current issues table
882
    # Check current issues table
883
- 

Return to bug 39920