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

(-)a/Koha/SearchEngine/Elasticsearch.pm (-1 / +9 lines)
Lines 794-799 sub marc_records_to_documents { Link Here
794
            }
794
            }
795
        }
795
        }
796
796
797
        Koha::Plugins->call(
798
            'elasticsearch_to_document',
799
            {
800
                index    => $self->index,
801
                record   => $record,
802
                document => $record_document,
803
            }
804
        );
805
797
        push @record_documents, $record_document;
806
        push @record_documents, $record_document;
798
    }
807
    }
799
    return \@record_documents;
808
    return \@record_documents;
800
- 

Return to bug 36433