From d6433ff71eba75eea9cd7d5e7da8cac62e7ade01 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 Signed-off-by: Tomas Cohen Arazi Edit: tcohen updated indentation --- 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 58a7498f81..0ab07bcd91 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.20.1