From 990136a3373f009738fef6e07c8d82bdff032c16 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 7 Dec 2017 09:32:02 +0100 Subject: [PATCH] Grant profile editing to administrators --- src/applications/people/storage/PhabricatorUser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/people/storage/PhabricatorUser.php b/src/applications/people/storage/PhabricatorUser.php index 6222d5f0b2..bde61242fb 100644 --- a/src/applications/people/storage/PhabricatorUser.php +++ b/src/applications/people/storage/PhabricatorUser.php @@ -1348,7 +1348,7 @@ final class PhabricatorUser if ($this->getIsSystemAgent() || $this->getIsMailingList()) { return PhabricatorPolicies::POLICY_ADMIN; } else { - return PhabricatorPolicies::POLICY_NOONE; + return PhabricatorPolicies::POLICY_ADMIN; } } }