diff --git a/src/applications/fund/controller/FundInitiativeViewController.php b/src/applications/fund/controller/FundInitiativeViewController.php index 763366e621..37618b22d2 100644 --- a/src/applications/fund/controller/FundInitiativeViewController.php +++ b/src/applications/fund/controller/FundInitiativeViewController.php @@ -45,7 +45,6 @@ final class FundInitiativeViewController $initiative->getStatus()); $header = id(new PHUIHeaderView()) - ->setObjectName($initiative->getMonogram()) ->setHeader($initiative->getName()) ->setUser($viewer) ->setPolicyObject($initiative) diff --git a/src/view/phui/PHUIHeaderView.php b/src/view/phui/PHUIHeaderView.php index fb651040be..3370519ebf 100644 --- a/src/view/phui/PHUIHeaderView.php +++ b/src/view/phui/PHUIHeaderView.php @@ -4,7 +4,6 @@ final class PHUIHeaderView extends AphrontTagView { const PROPERTY_STATUS = 1; - private $objectName; private $header; private $tags = array(); private $image; @@ -27,11 +26,6 @@ final class PHUIHeaderView extends AphrontTagView { return $this; } - public function setObjectName($object_name) { - $this->objectName = $object_name; - return $this; - } - public function setNoBackground($nada) { $this->noBackground = $nada; return $this; @@ -193,18 +187,6 @@ final class PHUIHeaderView extends AphrontTagView { ->setObject($this->policyObject); } - if ($this->objectName) { - $left[] = array( - phutil_tag( - 'a', - array( - 'href' => '/'.$this->objectName, - ), - $this->objectName), - ' ', - ); - } - if ($this->actionLinks) { $actions = array(); foreach ($this->actionLinks as $button) {