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

(-)a/Koha/SearchEngine/Elasticsearch.pm (-3 / +2 lines)
Lines 992-999 sub _get_marc_mapping_rules { Link Here
992
        if ($self->index eq $Koha::SearchEngine::BIBLIOS_INDEX) {
992
        if ($self->index eq $Koha::SearchEngine::BIBLIOS_INDEX) {
993
            # Format is: nonfiling characters indicator => field names list
993
            # Format is: nonfiling characters indicator => field names list
994
            %title_fields = (
994
            %title_fields = (
995
                1 => [630, 730, 740],
995
                1 => [130, 630, 730, 740],
996
                2 => [130, 222, 240, 242, 243, 440, 830]
996
                2 => [222, 240, 242, 243, 245, 440, 830]
997
            );
997
            );
998
        }
998
        }
999
        elsif ($self->index eq $Koha::SearchEngine::AUTHORITIES_INDEX) {
999
        elsif ($self->index eq $Koha::SearchEngine::AUTHORITIES_INDEX) {
1000
- 

Return to bug 22771