From 020537a80ecdd1ccec7ea6cd1157987fa4bc9c75 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 12 Nov 2012 10:18:30 +0100 Subject: [PATCH] Bug 9046: Followup FIX perl v.10 raises an error if itemnumbers if undefined If the itemnumbers parameter is undef, perl raises an error : "Can't use an undefined value as an ARRAY reference" --- C4/Biblio.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index eb96197..f48c312 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -2840,6 +2840,8 @@ sub EmbedItemsInMarcBiblio { my ($marc, $biblionumber, $itemnumbers) = @_; croak "No MARC record" unless $marc; + $itemnumbers = [] unless defined $itemnumbers; + my $frameworkcode = GetFrameworkCode($biblionumber); _strip_item_fields($marc, $frameworkcode); -- 1.7.10.4