@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

T6597, Uninstalled applications are still linked on Application launcher

Summary: Fixes T6597, Uninstalled applications should not be clickable when searching "All Applications" in the Applications launcher

Test Plan: Navigate too /applications/query/all, uninstall an application, navigate back to all applications. Uninstalled application title should not be clickable.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6597

Differential Revision: https://secure.phabricator.com/D11223

authored by

lkassianik and committed by
epriestley
87c1d004 204ae221

+1 -1
+1 -1
src/applications/meta/query/PhabricatorAppSearchEngine.php
··· 228 228 ->setIcon('fa-cog') 229 229 ->setHref('/applications/view/'.get_class($application).'/')); 230 230 231 - if ($application->getBaseURI()) { 231 + if ($application->getBaseURI() && $application->isInstalled()) { 232 232 $item->setHref($application->getBaseURI()); 233 233 } 234 234