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

(-)a/Koha/SearchEngine/Elasticsearch.pm (-1 / +9 lines)
Lines 848-853 sub marc_records_to_documents { Link Here
848
            }
848
            }
849
        }
849
        }
850
850
851
        Koha::Plugins->call(
852
            'elasticsearch_to_document',
853
            {
854
                index    => $self->index,
855
                record   => $record,
856
                document => $record_document,
857
            }
858
        );
859
851
        push @record_documents, $record_document;
860
        push @record_documents, $record_document;
852
    }
861
    }
853
    return \@record_documents;
862
    return \@record_documents;
854
- 

Return to bug 36433