Skip to content
Snippets Groups Projects
Commit 7bb16323 authored by monishdeb's avatar monishdeb
Browse files

CRM-13977 related fix

----------------------------------------
* CRM-13977: activities report fails to add contacts to group - fatal error
  http://issues.civicrm.org/jira/browse/CRM-13977
parent 5e98412d
Branches
Tags
No related merge requests found
......@@ -558,7 +558,7 @@ GROUP BY civicrm_activity_id {$this->_having} {$this->_orderBy}";
if ($dao->addtogroup_contact_id) {
$contact_id = explode(';', $dao->addtogroup_contact_id);
if ($contact_id[0]) {
$contactIDs[] = $contact_id[0];
$contactIDs[$contact_id[0]] = $contact_id[0];
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment