CRM-17593 -Update comment for change from role based permission to capabilties based...
authorKevin Cristiano <kcristiano@tadpole.cc>
Tue, 2 Feb 2016 18:50:25 +0000 (11:50 -0700)
committerKevin Cristiano <kcristiano@tadpole.cc>
Tue, 2 Feb 2016 18:50:25 +0000 (11:50 -0700)
----------------------------------------
* CRM-17593: Certain Permissions are hard coded to 'Administrator' in CRM_Core_Permission_WordPress
  https://issues.civicrm.org/jira/browse/CRM-17593

CRM/Core/Permission/WordPress.php

index 894da77da334b54b9c3033886c98c2db5ee4d898..37a6e32f0af717795c68300ee4fd96916e4922d0 100644 (file)
@@ -47,7 +47,7 @@ class CRM_Core_Permission_WordPress extends CRM_Core_Permission_Base {
    *   true if yes, else false
    */
   public function check($str) {
-    // Generic cms 'administer users' role tranlates to 'administrator' WordPress role
+    // Generic cms 'administer users' role tranlates to users with the 'edit_users' capability' in WordPress
     $str = $this->translatePermission($str, 'WordPress', array(
       'administer users' => 'edit_users',
     ));