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

(-)a/Koha/Biblio.pm (-2 / +1 lines)
Lines 547-553 sub get_marc_components { Link Here
547
                }
547
                }
548
            );
548
            );
549
        }
549
        }
550
        $components = $results if defined($results) && @$results;
550
        @$components = sort { $searcher->extract_biblionumber($a) <=> $searcher->extract_biblionumber($b) } @$results if defined($results) && @$results;
551
    }
551
    }
552
552
553
    return $components // [];
553
    return $components // [];
554
- 

Return to bug 30327