Skip to content

Commit

Permalink
Fix several access-related processors (fixes #14696) (#14706)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-H authored and opengeek committed Sep 3, 2019
1 parent 3beaaa7 commit 50233c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function initialize()
{
$initialized = parent::initialize();
$this->setDefaultProperties([
'sortAlias' => modAccessPolicy::class,
'sortAlias' => 'modAccessPolicy',
'group' => false,
'combo' => false,
'query' => '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function initialize()
{
$initialized = parent::initialize();
$this->setDefaultProperties([
'sortAlias' => modAccessPolicyTemplate::class,
'sortAlias' => 'modAccessPolicyTemplate',
'query' => '',
]);
return $initialized;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
namespace MODX\Revolution\Processors\Security\Role;


use modUserGroupRoleGetListProcessor;
use xPDO\Om\xPDOObject;

/**
Expand All @@ -25,7 +24,7 @@
*
* @package MODX\Revolution\Processors\Security\Role
*/
class GetAuthorityList extends modUserGroupRoleGetListProcessor
class GetAuthorityList extends GetList
{
/**
* @param xPDOObject $object
Expand Down

0 comments on commit 50233c5

Please sign in to comment.