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

(-)a/Koha/SearchEngine/Elasticsearch.pm (-2 / +1 lines)
Lines 258-264 sub raw_elasticsearch_mappings { Link Here
258
258
259
    my $schema = Koha::Database->new()->schema();
259
    my $schema = Koha::Database->new()->schema();
260
260
261
    my $search_fields = Koha::SearchFields->search();
261
    my $search_fields = Koha::SearchFields->search({}, { order_by => { -asc => 'name' } });
262
262
263
    my $mappings = {};
263
    my $mappings = {};
264
    while ( my $search_field = $search_fields->next ) {
264
    while ( my $search_field = $search_fields->next ) {
265
- 

Return to bug 23204