From 59a2ef88722c1bb0c80ebd24490b18221212a762 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 3 Feb 2022 14:43:13 +0000 Subject: [PATCH] Bug 29859: (QA follow-up) Minor typo correction We introduced a tiny bug with a typo in the patchset, the accessor method is called 'get_column' not 'get_columns'. Signed-off-by: Martin Renvoize --- Koha/Holds.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Holds.pm b/Koha/Holds.pm index d2cea098cf..187e61bbc7 100644 --- a/Koha/Holds.pm +++ b/Koha/Holds.pm @@ -123,7 +123,7 @@ sub get_items_that_can_fill { columns => ['itemnumber'], collapse => 1, } - )->get_columns('itemnumber'); + )->get_column('itemnumber'); my @waiting_holds = Koha::Holds->search( { 'found' => 'W' }, { -- 2.20.1