@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, unfatal the 404 page after new menu stuff.

+5 -2
+4 -1
src/view/page/PhabricatorStandardPageView.php
··· 154 154 155 155 $menu = id(new PhabricatorMainMenuView()) 156 156 ->setUser($request->getUser()) 157 - ->setController($this->getController()) 158 157 ->setDefaultSearchScope($this->getSearchDefaultScope()); 158 + 159 + if ($this->getController()) { 160 + $menu->setController($this->getController()); 161 + } 159 162 160 163 if ($this->getApplicationMenu()) { 161 164 $menu->setApplicationMenu($this->getApplicationMenu());
+1 -1
src/view/page/menu/PhabricatorMainMenuView.php
··· 222 222 ->setName(pht('Phabricator Home')) 223 223 ->setHref('/') 224 224 ->appendChild($this->renderMenuIcon('logo-light-large'))); 225 - if ($controller->getCurrentApplication()) { 225 + if ($controller && $controller->getCurrentApplication()) { 226 226 $application = $controller->getCurrentApplication(); 227 227 $icon = $application->getIconName().'-light-large'; 228 228 $view->addMenuItem(