diff --git a/src/applications/phurl/controller/PhabricatorPhurlURLViewController.php b/src/applications/phurl/controller/PhabricatorPhurlURLViewController.php index b0649cc62a..014d0eefef 100644 --- a/src/applications/phurl/controller/PhabricatorPhurlURLViewController.php +++ b/src/applications/phurl/controller/PhabricatorPhurlURLViewController.php @@ -79,7 +79,7 @@ final class PhabricatorPhurlURLViewController $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 index cc90b6ce6a..34a143bc90 100644 --- a/src/applications/phurl/storage/PhabricatorPhurlURL.php +++ b/src/applications/phurl/storage/PhabricatorPhurlURL.php @@ -83,7 +83,7 @@ final class PhabricatorPhurlURL extends PhabricatorPhurlDAO if ($this->getName()) { return $this->getName(); } else { - return $this->getMonogram(); + return $this->getLongURL(); } }