Go to bed without supper
authorcolemanw <coleman@civicrm.org>
Tue, 28 Nov 2023 15:47:55 +0000 (10:47 -0500)
committercolemanw <coleman@civicrm.org>
Tue, 28 Nov 2023 15:47:55 +0000 (10:47 -0500)
CRM/Activity/BAO/Activity.php
CRM/Case/BAO/Case.php

index e09b34ebd1f0e95324cf2f7e946a5b4de7ae9c11..27596d3f284987e8bdce1451456bcd0b7fd33b71 100644 (file)
@@ -2163,7 +2163,7 @@ AND cl.modified_id  = c.id
     }
 
     // Check for target and assignee contacts.
-    // First check for supper permission.
+    // First check for super permission.
     $supPermission = 'view all contacts';
     if ($action == CRM_Core_Action::UPDATE) {
       $supPermission = 'edit all contacts';
index 9c2e025b2c024df8c103f1e29157cb25c5ae302b..bdd20090e2b48fd00fa321a0494bc92bd0a9c5c0 100644 (file)
@@ -2502,7 +2502,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
     $actionOperations = ['view', 'edit', 'delete'];
     if (in_array($operation, $actionOperations)) {
 
-      //do cache when user has non/supper permission.
+      // Do cache when user has non-super permission.
       static $allowOperations;
 
       if (!is_array($allowOperations) ||
@@ -2546,7 +2546,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
             'edit',
           ])
           ) {
-            //do we have supper permission.
+            // Check for super permission.
             if (in_array('access all cases and activities', $hasPermissions[$operation])) {
               $allowOperations[$operation] = $allow = TRUE;
             }
@@ -2608,8 +2608,7 @@ WHERE id IN (' . implode(',', $copiedActivityIds) . ')';
         }
       }
       else {
-        //use cache.
-        //here contact might have supper/non permission.
+        // Use cache; user might have non-super permission.
         $allow = $allowOperations[$operation];
       }
     }