diff --git a/src/applications/people/controller/PhabricatorPeopleEditController.php b/src/applications/people/controller/PhabricatorPeopleEditController.php index b1364c0780..3ac39fdfcd 100644 --- a/src/applications/people/controller/PhabricatorPeopleEditController.php +++ b/src/applications/people/controller/PhabricatorPeopleEditController.php @@ -54,7 +54,9 @@ final class PhabricatorPeopleEditController pht('View Profile'), '/p/'.$user->getUsername().'/'); $nav->addLabel(pht('Special')); $nav->addFilter('rename', pht('Change Username')); - $nav->addFilter('picture', pht('Set Account Picture')); + if ($user->getIsSystemAgent()) { + $nav->addFilter('picture', pht('Set Account Picture')); + } $nav->addFilter('delete', pht('Delete User')); if (!$user->getID()) {