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

(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (-2 / +1 lines)
Lines 714-720 sub _convert_index_fields { Link Here
714
    my %index_type_convert =
714
    my %index_type_convert =
715
      ( __default => undef, phr => 'phrase', rtrn => 'right-truncate', 'st-year' => 'st-year' );
715
      ( __default => undef, phr => 'phrase', rtrn => 'right-truncate', 'st-year' => 'st-year' );
716
716
717
    @indexes = grep(/.+/, @indexes); # Remove any blank indexes, i.e. keyword
717
    @indexes = grep { $_ ne q{} } @indexes; # Remove any blank indexes, i.e. keyword
718
718
719
    # Convert according to our table, drop anything that doesn't convert.
719
    # Convert according to our table, drop anything that doesn't convert.
720
    # If a field starts with mc- we save it as it's used (and removed) later
720
    # If a field starts with mc- we save it as it's used (and removed) later
721
- 

Return to bug 29077