diff --git a/src/applications/search/menuitem/PhabricatorConpherenceProfileMenuItem.php b/src/applications/search/menuitem/PhabricatorConpherenceProfileMenuItem.php index 6a91188c8f..542c634958 100644 --- a/src/applications/search/menuitem/PhabricatorConpherenceProfileMenuItem.php +++ b/src/applications/search/menuitem/PhabricatorConpherenceProfileMenuItem.php @@ -17,6 +17,12 @@ final class PhabricatorConpherenceProfileMenuItem } public function canAddToObject($object) { + $application = new PhabricatorConpherenceApplication(); + + if (!$application->isInstalled()) { + return false; + } + return true; }