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 <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Edit: tcohen updated indentation
(cherry picked from commit d6433ff71e)
Signed-off-by: Jacob O'Mara <jacob.omara@ptfs-europe.com>
This commit is contained in:
Nick Clemens 2023-02-02 15:03:39 +00:00 committed by Jacob O'Mara
parent e1bdf9fa2e
commit 0580913a8b

View file

@ -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,
}