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

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

Return to bug 23204