Bug 24100: (bug 23788 follow-up) Capitalization correction
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 25 Nov 2019 11:21:52 +0000 (11:21 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Mon, 25 Nov 2019 17:03:41 +0000 (17:03 +0000)
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 <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

members/paycollect.pl

index 1a39f17..8590765 100755 (executable)
@@ -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 },