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

(-)a/Koha/SearchEngine/Elasticsearch.pm (-2 / +1 lines)
Lines 577-583 sub marc_records_to_documents { Link Here
577
                                }
577
                                }
578
                            );
578
                            );
579
                        }
579
                        }
580
                        if ( defined @{$mappings}[0] && grep /match-heading/, @{@{$mappings}[0]} ){
580
                        if ( @{$mappings} && grep { $_->[0] eq 'match-heading'} @{$mappings} ){
581
                            # Used by the authority linker the match-heading field requires a specific syntax
581
                            # Used by the authority linker the match-heading field requires a specific syntax
582
                            # that is specified in C4/Heading
582
                            # that is specified in C4/Heading
583
                            my $heading = C4::Heading->new_from_field( $field, undef, 1 ); #new auth heading
583
                            my $heading = C4::Heading->new_from_field( $field, undef, 1 ); #new auth heading
584
- 

Return to bug 25050