CRM-19201 - Correct comment.
authorBob Silvern <bobs00@cox.net>
Sat, 13 Aug 2016 15:37:47 +0000 (08:37 -0700)
committerBob Silvern <bobs00@cox.net>
Sat, 13 Aug 2016 15:37:47 +0000 (08:37 -0700)
----------------------------------------
* CRM-19201: Cannot search CiviCampaign/CiviCase activities or report CiviCampaign activities
  https://issues.civicrm.org/jira/browse/CRM-19201

CRM/Activity/Selector/Search.php

index dcd396daaf13cf0684e7a8e45c6758b0b42f6b48..0e2549c63ca5d50bc9ebcfabb1309f47509e0ee9 100644 (file)
@@ -174,11 +174,11 @@ class CRM_Activity_Selector_Search extends CRM_Core_Selector_Base implements CRM
     $components = CRM_Core_Component::getNames();
     $componentClause = array();
     foreach ($components as $componentID => $componentName) {
-      // CRM-19201: Add support for reporting CiviCampaign activities
-      // For CiviCase, "access all cases and activities" is required here
-      // rather than "access my cases and activities" to prevent those with
-      // only the later permission from seeing a list of all cases which might
-      // present a privacy issue.
+      // CRM-19201: Add support for searching CiviCampaign and CiviCase
+      // activities. For CiviCase, "access all cases and activities" is
+      // required here rather than "access my cases and activities" to
+      // prevent those with only the later permission from seeing a list
+      // of all cases which might present a privacy issue.
       if (!CRM_Core_Permission::access($componentName, TRUE, TRUE)) {
         $componentClause[] = " (activity_type.component_id IS NULL OR activity_type.component_id <> {$componentID}) ";
       }