From 81911acb50e67eaf5270c002062c351a42e60b67 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 29 Mar 2018 14:34:55 -0400 Subject: [PATCH] Deal with out of memory issues. Give third parameter of true to keep from getting all member data in pointer type. --- models/admin/ajax/accountsListExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/admin/ajax/accountsListExport.php b/models/admin/ajax/accountsListExport.php index 4dd2793..55d8320 100644 --- a/models/admin/ajax/accountsListExport.php +++ b/models/admin/ajax/accountsListExport.php @@ -189,7 +189,7 @@ class GlmMembersAdmin_ajax_accountsListExport extends GlmDataAccounts // Get a current list of accounts without paging $orderBy = 'renewal_date ASC'; - $list = $this->getList( $where, $orderBy ); + $list = $this->getList( $where, $orderBy, true ); // If we have list entries - even if it's an empty list $success = true; -- 2.17.1