From b0c48743378a6cf4dcb4cfd70270ebf4b8156796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joonas=20Kylm=C3=A4l=C3=A4?= Date: Mon, 8 Jun 2020 15:12:52 +0300 Subject: [PATCH] Bug 11175: (follow-up) Don't return explicitly undef This would create in list context an list of one element that is undef, which we don't want, we want empty list if there are no components. Signed-off-by: Nick Clemens Signed-off-by: Pasi Kallinen Signed-off-by: Martin Renvoize Signed-off-by: Andrew Nugged --- Koha/Biblio.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index b711132f2a..7505f52486 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -490,7 +490,7 @@ this object (MARC21 773$w points to this) sub components { my ($self) = @_; - return undef if (C4::Context->preference('marcflavour') ne 'MARC21'); + return if (C4::Context->preference('marcflavour') ne 'MARC21'); if (!defined($self->{_components})) { my $marc = C4::Biblio::GetMarcBiblio({ biblionumber => $self->id }); -- 2.20.1