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

(-)a/Koha/SearchEngine/Elasticsearch.pm (-3 / +2 lines)
Lines 979-986 sub _get_marc_mapping_rules { Link Here
979
        if ($self->index eq $Koha::SearchEngine::BIBLIOS_INDEX) {
979
        if ($self->index eq $Koha::SearchEngine::BIBLIOS_INDEX) {
980
            # Format is: nonfiling characters indicator => field names list
980
            # Format is: nonfiling characters indicator => field names list
981
            %title_fields = (
981
            %title_fields = (
982
                1 => [630, 730, 740],
982
                1 => [130, 630, 730, 740],
983
                2 => [130, 222, 240, 242, 243, 440, 830]
983
                2 => [222, 240, 242, 243, 245, 440, 830]
984
            );
984
            );
985
        }
985
        }
986
        elsif ($self->index eq $Koha::SearchEngine::AUTHORITIES_INDEX) {
986
        elsif ($self->index eq $Koha::SearchEngine::AUTHORITIES_INDEX) {
987
- 

Return to bug 22771