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

(-)a/Koha/Items.pm (-2 / +2 lines)
Lines 438-444 sub search_ordered { Link Here
438
    my @biblionumbers = uniq $self->get_column('biblionumber');
438
    my @biblionumbers = uniq $self->get_column('biblionumber');
439
439
440
    if ( scalar ( @biblionumbers ) == 1
440
    if ( scalar ( @biblionumbers ) == 1
441
        && Koha::Biblios->find( $biblionumbers[0] )->serial )
441
        && Koha::Biblios->find( $biblionumbers[0] )->serial
442
        && Koha::Biblios->find( $biblionumbers[0] )->{frameworkcode} eq 'SER' )
442
    {
443
    {
443
        return $self->search(
444
        return $self->search(
444
            {},
445
            {},
445
- 

Return to bug 34128