|
Lines 686-692
RECORD: foreach my $record ( @{$marc_records} ) {
Link Here
|
| 686 |
} |
686 |
} |
| 687 |
|
687 |
|
| 688 |
my $biblio = Koha::Biblios->find($record_id); |
688 |
my $biblio = Koha::Biblios->find($record_id); |
| 689 |
$record = $biblio->metadata->record( { embed_items => 1 } ); |
689 |
$record = $biblio->metadata_record( { embed_items => 1 } ); |
| 690 |
|
690 |
|
| 691 |
push @search_engine_record_ids, $record_id; |
691 |
push @search_engine_record_ids, $record_id; |
| 692 |
push @search_engine_records, $record; |
692 |
push @search_engine_records, $record; |
| 693 |
- |
|
|