CRM-19068 remove references to 'descendant groups for an org'
authoreileenmcnaugton <eileen@fuzion.co.nz>
Sun, 7 Aug 2016 07:37:41 +0000 (19:37 +1200)
committereileenmcnaugton <eileen@fuzion.co.nz>
Sun, 7 Aug 2016 22:17:02 +0000 (10:17 +1200)
A grep on this only finds it in the legacy version of the multisite
extension

CRM/Contact/BAO/Group.php

index 444b11b8cafe51305fb1298c1fbd202e6692793f..adc3291d7d45ce7d5e3c947f960d9eff873a90fc 100644 (file)
@@ -107,11 +107,6 @@ class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
     $query = "DELETE FROM civicrm_acl_entity_role where entity_table = 'civicrm_group' AND entity_id = %1";
     CRM_Core_DAO::executeQuery($query, $params);
 
-    if (Civi::settings()->get('is_enabled')) {
-      // clear any descendant groups cache if exists
-      CRM_Core_BAO_Cache::deleteGroup('descendant groups for an org');
-    }
-
     // delete from group table
     $group = new CRM_Contact_DAO_Group();
     $group->id = $id;
@@ -448,9 +443,6 @@ class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
         }
       }
 
-      // clear any descendant groups cache if exists
-      $finalGroups = CRM_Core_BAO_Cache::deleteGroup('descendant groups for an org');
-
       // this is always required, since we don't know when a
       // parent group is removed
       CRM_Contact_BAO_GroupNestingCache::update();