From 857feb63e03fb030a8134f3bea00cf07f3d782a7 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 15 Dec 2022 10:04:14 +0000 Subject: [PATCH] Bug 32472: Fix wrong POD for bookseller->subscriptions You should not call this in list context anymore after bug 29844. Test plan: Check pod of Bookseller. Signed-off-by: Marcel de Rooy Signed-off-by: Emmi Takkinen Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 836f0c77e38c945dd3b221f3d9bd72f408680b2e) Signed-off-by: Jacob O'Mara --- Koha/Acquisition/Bookseller.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Acquisition/Bookseller.pm b/Koha/Acquisition/Bookseller.pm index 26a0a4321f..7cf76d6705 100644 --- a/Koha/Acquisition/Bookseller.pm +++ b/Koha/Acquisition/Bookseller.pm @@ -63,7 +63,7 @@ sub contacts { =head3 subscriptions my $vendor = Koha::Acquisition::Booksellers->find( $id ); - my @subscriptions = $vendor->subscriptions(); + my $subscriptions = $vendor->subscriptions(); Returns the list of subscriptions for the vendor -- 2.20.1