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

(-)a/Koha/Items.pm (-2 / +1 lines)
Lines 450-456 sub search_ordered { Link Here
450
450
451
    $self = $self->search($params, $attributes);
451
    $self = $self->search($params, $attributes);
452
452
453
    my @biblionumbers = uniq $self->get_column('biblionumber');
453
    my @biblionumbers = uniq $self->search(undef,{distinct=>1})->get_column('biblionumber');
454
454
455
    if ( scalar ( @biblionumbers ) == 1
455
    if ( scalar ( @biblionumbers ) == 1
456
        && Koha::Biblios->find( $biblionumbers[0] )->serial )
456
        && Koha::Biblios->find( $biblionumbers[0] )->serial )
457
- 

Return to bug 34360