From d0f9bb3cc1c53c9dc8df3725ad48f4ca6979c06f Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Tue, 13 Dec 2022 11:24:54 -1000 Subject: [PATCH] Bug 32464: Koha::Item->as_marc_field obsolete option mss Since Bug 28445 the method Koha::Item->as_marc_field has the option mss not anymore. This patch removes this in Koha::Filter::MARC::EmbedItems. Test with : prove t/db_dependent/Koha/Filter/EmbedItems.t Signed-off-by: Jonathan Druart --- Koha/Filter/MARC/EmbedItems.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Koha/Filter/MARC/EmbedItems.pm b/Koha/Filter/MARC/EmbedItems.pm index 2839694ff8a..e3e316e295d 100644 --- a/Koha/Filter/MARC/EmbedItems.pm +++ b/Koha/Filter/MARC/EmbedItems.pm @@ -71,13 +71,11 @@ sub filter { return unless defined $record and ref($record) eq 'MARC::Record'; my $items = $self->{params}->{options}->{items}; - my $mss = $self->{params}->{options}->{mss} - // C4::Biblio::GetMarcSubfieldStructure( '', { unsafe => 1 } ); my @item_fields; foreach my $item ( @{$items} ) { - push @item_fields, $item->as_marc_field( { mss => $mss } ); + push @item_fields, $item->as_marc_field; } $record->append_fields(@item_fields); -- 2.25.1