@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.

Minor, fix 404 page.

+6 -1
+6 -1
src/applications/diviner/application/PhabricatorApplicationDiviner.php
··· 27 27 PhabricatorController $controller = null) { 28 28 29 29 $items = array(); 30 - $application = $controller->getCurrentApplication(); 30 + 31 + $application = null; 32 + if ($controller) { 33 + $application = $controller->getCurrentApplication(); 34 + } 35 + 31 36 if ($application && $application->getHelpURI()) { 32 37 $class = 'main-menu-item-icon-help'; 33 38 $item = new PhabricatorMainMenuIconView();