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

(-)a/C4/Search.pm (-2 / +1 lines)
Lines 592-599 sub getRecords { Link Here
592
                if ($sorted_facets) {
592
                if ($sorted_facets) {
593
                    $f->{facets} = $sorted_facets;
593
                    $f->{facets} = $sorted_facets;
594
                }
594
                }
595
            }
595
            } elsif ( C4::Context->preference('FacetOrder') eq 'Stringwise' ) {
596
            if ( C4::Context->preference('FacetOrder') eq 'Stringwise' ) {
597
                @{ $f->{facets} } = sort { $a->{facet_label_value} cmp $b->{facet_label_value} } @{ $f->{facets} };
596
                @{ $f->{facets} } = sort { $a->{facet_label_value} cmp $b->{facet_label_value} } @{ $f->{facets} };
598
            }
597
            }
599
        }
598
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/i18n_l10n.pref (-2 / +1 lines)
Lines 67-73 I18N/L10N: Link Here
67
        - Sort facet names using
67
        - Sort facet names using
68
        - pref: FacetSortingLocale
68
        - pref: FacetSortingLocale
69
          type: locale-list
69
          type: locale-list
70
        - locale when <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=FacetOrder">FacetOrder<a> is set to alphabetically using locale. This enables proper Unicode-aware sorting of accented characters and locale-specific alphabetical ordering.
70
        - locale when <a href="/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=FacetOrder">FacetOrder</a> is set to alphabetically using locale. This enables proper Unicode-aware sorting of accented characters and locale-specific alphabetical ordering.
71
    -
71
    -
72
        - pref: TranslateNotices
72
        - pref: TranslateNotices
73
          choices:
73
          choices:
74
- 

Return to bug 41287