CRM-17593 -Update comment for change from role based permission to capabilties based...
authorKevin Cristiano <kcristiano@tadpole.cc>
Tue, 2 Feb 2016 19:01:38 +0000 (12:01 -0700)
committerKevin Cristiano <kcristiano@tadpole.cc>
Tue, 2 Feb 2016 19:01:38 +0000 (12:01 -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 b0ecd5b11e77d353fa7350ed89c4b564d5bd1956..4de5a0e539a78591d1ec6361c2c771531313a899 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',
     ));