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

(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (-2 / +4 lines)
Lines 287-293 sub _create_match_expression { Link Here
287
287
288
    my $field = $search_param->{field};
288
    my $field = $search_param->{field};
289
    $expression->{match} = {
289
    $expression->{match} = {
290
        $field => $search_param->{operand}
290
        $field => {
291
            query => $search_param->{operand},
292
            operator => 'and',
293
        },
291
    };
294
    };
292
295
293
    return $expression;
296
    return $expression;
294
- 

Return to bug 24555