From 69fe8932686a050c3cc2b5ad14628be7781fba5a Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 2 Feb 2023 15:03:39 +0000 Subject: [PATCH] Bug 32798: Update parameter passed to Koha::Biblio::Metadata->record To test: 1 - Enable OAI sets, and define a set with mapping 952 y = BK 2 - perl misc/migration_tools/build_oai_sets.pl -v -i -r 3 - The script dies: Koha::Biblio::Metadata->record must be called on an instantiated object or like a class method with a record passed in parameter 4 - Apply patch 5 - Repeat 6 - Success! Signed-off-by: Jonathan Druart --- misc/migration_tools/build_oai_sets.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/migration_tools/build_oai_sets.pl b/misc/migration_tools/build_oai_sets.pl index 58a7498f811..83d9f37870f 100755 --- a/misc/migration_tools/build_oai_sets.pl +++ b/misc/migration_tools/build_oai_sets.pl @@ -143,7 +143,7 @@ foreach my $res (@$results) { if($embed_items) { $record = Koha::Biblio::Metadata->record( { - marc_record => $record, + record => $record, embed_items => 1, biblionumber => $biblionumber, } -- 2.25.1