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

Render Maniphest custom fields last

Summary: Ref T2217. Fixes T3865. Eventually we'll probably make more of this configurable, but for now shove custom fields down instead of sort of arbitrarily putting them in the middle.

Test Plan: Looked at a task with attached revisions and custom fields, saw custom fields last.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T2217, T3865

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

+5 -5
+5 -5
src/applications/maniphest/controller/ManiphestTaskDetailController.php
··· 498 498 ? $this->renderHandlesForPHIDs($task->getProjectPHIDs(), ',') 499 499 : phutil_tag('em', array(), pht('None'))); 500 500 501 - $field_list->appendFieldsToPropertyList( 502 - $task, 503 - $viewer, 504 - $view); 505 - 506 501 $edge_types = array( 507 502 PhabricatorEdgeConfig::TYPE_TASK_DEPENDED_ON_BY_TASK 508 503 => pht('Dependent Tasks'), ··· 575 570 pht('Files'), 576 571 $file_view->render()); 577 572 } 573 + 574 + $field_list->appendFieldsToPropertyList( 575 + $task, 576 + $viewer, 577 + $view); 578 578 579 579 $view->invokeWillRenderEvent(); 580 580