From 5286f0014ce4d99ac6692095064147f9f6550c9b Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 15 Dec 2022 10:04:14 +0000 Subject: [PATCH 1/2] 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 --- 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.34.1