----------------------------------------
* CRM-19434: Manage Group page notice errors for child groups
https://issues.civicrm.org/jira/browse/CRM-19434
$groupsDT = array();
$groupsDT['data'] = $groupList;
- $groupsDT['recordsTotal'] = $params['total'];
- $groupsDT['recordsFiltered'] = $params['total'];
+ $groupsDT['recordsTotal'] = !empty($params['total']) ? $params['total'] : NULL;
+ $groupsDT['recordsFiltered'] = !empty($params['total']) ? $params['total'] : NULL;
return $groupsDT;
}
//$this->pagerAToZ( $whereClause, $params );
+ $limit = "";
if (!empty($params['rowCount']) &&
$params['rowCount'] > 0
) {