projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6772229
)
CRM-16944 e-notice
author
Eileen McNaughton
<eileen@mcnaughty.com>
Fri, 31 Jul 2015 00:39:42 +0000
(12:39 +1200)
committer
Eileen McNaughton
<eileen@mcnaughty.com>
Fri, 31 Jul 2015 00:39:42 +0000
(12:39 +1200)
api/v3/GroupContact.php
patch
|
blob
|
blame
|
history
diff --git
a/api/v3/GroupContact.php
b/api/v3/GroupContact.php
index e7e76659d44ac5ea7e4c908a915e2e80d4b024af..c39f826d13fbd203dfd25b9f34313b4c2d0803cb 100644
(file)
--- a/
api/v3/GroupContact.php
+++ b/
api/v3/GroupContact.php
@@
-69,7
+69,7
@@
function civicrm_api3_group_contact_get($params) {
$status = CRM_Utils_Array::value('status', $params, 'Added');
$groupId = CRM_Utils_Array::value('group_id', $params);
- $values =
&
CRM_Contact_BAO_GroupContact::getContactGroup($params['contact_id'], $status, NULL, FALSE, TRUE, FALSE, TRUE, $groupId);
+ $values = CRM_Contact_BAO_GroupContact::getContactGroup($params['contact_id'], $status, NULL, FALSE, TRUE, FALSE, TRUE, $groupId);
return civicrm_api3_create_success($values, $params, 'GroupContact');
}