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

(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (-4 lines)
Lines 283-291 sub _build_query_query_string { Link Here
283
        $uri->query_param_append('q' => $operand) if $operand;
283
        $uri->query_param_append('q' => $operand) if $operand;
284
        $uri->query_param_append('op' => $operator) if $operator;
284
        $uri->query_param_append('op' => $operator) if $operator;
285
    }
285
    }
286
    if ($query_parts->{sort_by}) {
287
        $uri->query_param('sort_by' => $query_parts->{sort_by});
288
    }
289
    return $uri->query;
286
    return $uri->query;
290
}
287
}
291
288
292
- 

Return to bug 20114