diff --git a/src/applications/home/engine/PhabricatorHomeProfileMenuEngine.php b/src/applications/home/engine/PhabricatorHomeProfileMenuEngine.php --- a/src/applications/home/engine/PhabricatorHomeProfileMenuEngine.php +++ b/src/applications/home/engine/PhabricatorHomeProfileMenuEngine.php @@ -39,7 +39,7 @@ } $properties = array( - 'name' => $application->getName(), + 'name' => '', 'application' => $application->getPHID(), ); diff --git a/src/applications/search/menuitem/PhabricatorApplicationProfileMenuItem.php b/src/applications/search/menuitem/PhabricatorApplicationProfileMenuItem.php --- a/src/applications/search/menuitem/PhabricatorApplicationProfileMenuItem.php +++ b/src/applications/search/menuitem/PhabricatorApplicationProfileMenuItem.php @@ -89,7 +89,8 @@ ->setIcon($app->getIcon()); // Don't show tooltip if they've set a custom name - if (strlen(($config->getMenuItemProperty('name')))) { + $name = $config->getMenuItemProperty('name'); + if (!strlen($name)) { $item->setTooltip($app->getShortDescription()); }