From 9e34543c74db76b95ef594da587cef9a333903ac Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 25 Nov 2019 11:21:52 +0000 Subject: [PATCH] Bug 24100: (bug 23788 follow-up) Capitalization correction Correct the capitalization of the class name introduced in bug 23788. Test plan: 1) Prior to patch attempt to 'pay off selected' - Note a server error 2) Apply patch 3) Attempt to 'pay off selected' - Note it now works as expected. 4) Signoff Signed-off-by: Tomas Cohen Arazi --- members/paycollect.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/paycollect.pl b/members/paycollect.pl index 1a39f17b00..8590765263 100755 --- a/members/paycollect.pl +++ b/members/paycollect.pl @@ -143,7 +143,7 @@ if ( $selected_accts ) { } my @acc = split /,/, $selected_accts; - @selected_accountlines = koha::account::lines->search( + @selected_accountlines = Koha::Account::Lines->search( { borrowernumber => $borrowernumber, amountoutstanding => { '<>' => 0 }, -- 2.24.0