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

(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (+1 lines)
Lines 197-202 sub build_query { Link Here
197
    if ($options{whole_record}) {
197
    if ($options{whole_record}) {
198
        push @$fields, 'marc_data_array.*';
198
        push @$fields, 'marc_data_array.*';
199
    }
199
    }
200
    push @$fields, 'title.punc_removed';
200
    $res->{query} = {
201
    $res->{query} = {
201
        query_string => {
202
        query_string => {
202
            query            => $query,
203
            query            => $query,
(-)a/admin/searchengine/elasticsearch/field_config.yaml (-1 / +3 lines)
Lines 53-58 search: Link Here
53
      ci_raw:
53
      ci_raw:
54
        type: keyword
54
        type: keyword
55
        normalizer: icu_folding_normalizer
55
        normalizer: icu_folding_normalizer
56
      punc_removed:
57
        type: text
58
        analyzer: analyzer_stdno
56
# Facets
59
# Facets
57
facet:
60
facet:
58
  default:
61
  default:
59
- 

Return to bug 27153