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

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

Return to bug 23204