diff --git a/src/applications/phurl/controller/PhabricatorPhurlURLViewController.php b/src/applications/phurl/controller/PhabricatorPhurlURLViewController.php --- a/src/applications/phurl/controller/PhabricatorPhurlURLViewController.php +++ b/src/applications/phurl/controller/PhabricatorPhurlURLViewController.php @@ -79,7 +79,7 @@ $header = id(new PHUIHeaderView()) ->setUser($viewer) - ->setHeader($url->getName()) + ->setHeader($url->getDisplayName()) ->setStatus($icon, $color, $status) ->setPolicyObject($url); diff --git a/src/applications/phurl/storage/PhabricatorPhurlURL.php b/src/applications/phurl/storage/PhabricatorPhurlURL.php --- a/src/applications/phurl/storage/PhabricatorPhurlURL.php +++ b/src/applications/phurl/storage/PhabricatorPhurlURL.php @@ -83,7 +83,7 @@ if ($this->getName()) { return $this->getName(); } else { - return $this->getMonogram(); + return $this->getLongURL(); } }