Skip to content
Snippets Groups Projects
Commit 07fc2fd3 authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

CRM-13156, fixed the wrong property

----------------------------------------
* CRM-13156: CRM_Core_BAO_EntityTag::getEntitiesByTag enumerates for incorrect field
  http://issues.civicrm.org/jira/browse/CRM-13156
parent b6397f6a
No related branches found
No related tags found
No related merge requests found
......@@ -268,18 +268,18 @@ class CRM_Core_BAO_EntityTag extends CRM_Core_DAO_EntityTag {
*
* @param object $tag an object of a tag.
*
* @return array $contactIds array of contact ids
* @return array $entityIds array of entity ids
* @access public
*/
function getEntitiesByTag($tag) {
$contactIds = array();
$entityIds = array();
$entityTagDAO = new CRM_Core_DAO_EntityTag();
$entityTagDAO->tag_id = $tag->id;
$entityTagDAO->find();
while ($entityTagDAO->fetch()) {
$contactIds[] = $entityTagDAO->contact_id;
$entityIds[] = $entityTagDAO->entity_id;
}
return $contactIds;
return $entityIds;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment