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

Fix the Maniphest edit form route

Didn't get this quite right in D14717.

+2 -2
+2 -2
src/applications/maniphest/application/PhabricatorManiphestApplication.php
··· 54 54 '/T(?P<id>[1-9]\d*)' => 'ManiphestTaskDetailController', 55 55 '/maniphest/' => array( 56 56 '(?:query/(?P<queryKey>[^/]+)/)?' => 'ManiphestTaskListController', 57 - $this->getEditRoutePattern('edit/') 58 - => 'ManiphestTaskEditController', 59 57 'report/(?:(?P<view>\w+)/)?' => 'ManiphestReportController', 60 58 'batch/' => 'ManiphestBatchEditController', 61 59 'task/' => array( 60 + $this->getEditRoutePattern('edit/') 61 + => 'ManiphestTaskEditController', 62 62 'descriptionpreview/' 63 63 => 'PhabricatorMarkupPreviewController', 64 64 ),