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

(-)a/C4/Search.pm (-2 lines)
Lines 599-605 sub getRecords { Link Here
599
        foreach my $f (@facets_loop) {
599
        foreach my $f (@facets_loop) {
600
            $f->{facets} = [ sort { uc($a->{facet_label_value}) cmp uc($b->{facet_label_value}) } @{ $f->{facets} } ];
600
            $f->{facets} = [ sort { uc($a->{facet_label_value}) cmp uc($b->{facet_label_value}) } @{ $f->{facets} } ];
601
        }
601
        }
602
        @facets_loop = sort {defined $a->{expand} && defined $b->{expand} && $a->{expand} cmp $b->{expand}} @facets_loop;
603
    }
602
    }
604
603
605
    return ( undef, $results_hashref, \@facets_loop );
604
    return ( undef, $results_hashref, \@facets_loop );
606
- 

Return to bug 25701