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

(-)a/Koha/Patron.pm (-2 / +1 lines)
Lines 558-564 sub do_check_for_previous_checkout { Link Here
558
558
559
    my @item_nos;
559
    my @item_nos;
560
    my $biblio = Koha::Biblios->find( $item->{biblionumber} );
560
    my $biblio = Koha::Biblios->find( $item->{biblionumber} );
561
    if ( $biblio->serial ) {
561
    if ( $biblio->is_serial ) {
562
        push @item_nos, $item->{itemnumber};
562
        push @item_nos, $item->{itemnumber};
563
    } else {
563
    } else {
564
        # Get all itemnumbers for given bibliographic record.
564
        # Get all itemnumbers for given bibliographic record.
565
- 

Return to bug 16284