From e8efd07f32ef965cd02b7dfc8222d2b11a07648d Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Fri, 16 Mar 2018 14:02:45 -0400 Subject: [PATCH] Fix add payment page Get simple list of accounts. --- models/admin/billing/payments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/admin/billing/payments.php b/models/admin/billing/payments.php index 4fbf705..d3eabe8 100644 --- a/models/admin/billing/payments.php +++ b/models/admin/billing/payments.php @@ -129,7 +129,7 @@ class GlmMembersAdmin_billing_payments extends GlmDataPayments $view = 'editPayment'; // Need to get the accounts $Accounts = new GlmDataAccounts( $this->wpdb, $this->config ); - $accounts = $Accounts->getList(); + $accounts = $Accounts->getSimpleAccountList(); break; case 'insert': -- 2.17.1