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

(-)a/Koha/SearchEngine/Elasticsearch.pm (-1 / +9 lines)
Lines 885-890 sub marc_records_to_documents { Link Here
885
            }
885
            }
886
        }
886
        }
887
887
888
        Koha::Plugins->call(
889
            'elasticsearch_to_document',
890
            {
891
                index    => $self->index,
892
                record   => $record,
893
                document => $record_document,
894
            }
895
        );
896
888
        push @record_documents, $record_document;
897
        push @record_documents, $record_document;
889
    }
898
    }
890
    return \@record_documents;
899
    return \@record_documents;
891
- 

Return to bug 36433