diff --git a/src/applications/project/controller/PhabricatorProjectBoardViewController.php b/src/applications/project/controller/PhabricatorProjectBoardViewController.php --- a/src/applications/project/controller/PhabricatorProjectBoardViewController.php +++ b/src/applications/project/controller/PhabricatorProjectBoardViewController.php @@ -303,11 +303,9 @@ $project->getName()); $header = id(new PHUIHeaderView()) - ->setHeader($header_link) + ->setHeader(pht('%s Workboard', $header_link)) ->setUser($viewer) ->setNoBackground(true) - ->setImage($project->getProfileImageURI()) - ->setImageURL($this->getApplicationURI('profile/'.$project->getID().'/')) ->addActionLink($sort_menu) ->addActionLink($filter_menu) ->addActionLink($manage_menu) diff --git a/src/applications/project/controller/PhabricatorProjectEditMainController.php b/src/applications/project/controller/PhabricatorProjectEditMainController.php --- a/src/applications/project/controller/PhabricatorProjectEditMainController.php +++ b/src/applications/project/controller/PhabricatorProjectEditMainController.php @@ -32,8 +32,7 @@ $header = id(new PHUIHeaderView()) ->setHeader(pht('Edit %s', $project->getName())) ->setUser($viewer) - ->setPolicyObject($project) - ->setImage($project->getProfileImageURI()); + ->setPolicyObject($project); if ($project->getStatus() == PhabricatorProjectStatus::STATUS_ACTIVE) { $header->setStatus('fa-check', 'bluegrey', pht('Active'));