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

(-)a/Koha/Patron.pm (-2 / +1 lines)
Lines 551-557 sub do_check_for_previous_checkout { Link Here
551
551
552
    my @item_nos;
552
    my @item_nos;
553
    my $biblio = Koha::Biblios->find( $item->{biblionumber} );
553
    my $biblio = Koha::Biblios->find( $item->{biblionumber} );
554
    if ( $biblio->serial ) {
554
    if ( $biblio->is_serial ) {
555
        push @item_nos, $item->{itemnumber};
555
        push @item_nos, $item->{itemnumber};
556
    } else {
556
    } else {
557
        # Get all itemnumbers for given bibliographic record.
557
        # Get all itemnumbers for given bibliographic record.
558
- 

Return to bug 16284