From: Andrew Hunt Date: Wed, 27 Mar 2013 15:06:11 +0000 (-0400) Subject: wasn't sending entity to util function X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d64eb977309b48cc4d62d2b4a1025fddf0d5b94a;p=civicrm-core.git wasn't sending entity to util function --- diff --git a/api/v3/Group.php b/api/v3/Group.php index e5255d4216..2328439294 100644 --- a/api/v3/Group.php +++ b/api/v3/Group.php @@ -97,7 +97,7 @@ function _civicrm_api3_group_create_spec(&$params) { */ function civicrm_api3_group_get($params) { - $options = _civicrm_api3_get_options_from_params($params, TRUE, 'get'); + $options = _civicrm_api3_get_options_from_params($params, TRUE, 'group', 'get'); $sort = CRM_Utils_Array::value('sort', $options, NULL); $offset = CRM_Utils_Array::value('offset', $options); $rowCount = CRM_Utils_Array::value('limit', $options);