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

Add basic fields back to Manage pages

Summary: It feels wierd to edit a project or profile and not see the changes. For now add them back to the Manage page.

Test Plan: Edit a Profile, Edit a Project. See updates on Manage page.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+12
+6
src/applications/people/controller/PhabricatorPeopleProfileManageController.php
··· 16 16 ->withIDs(array($id)) 17 17 ->needProfile(true) 18 18 ->needProfileImage(true) 19 + ->needAvailability(true) 19 20 ->executeOne(); 20 21 if (!$user) { 21 22 return new Aphront404Response(); ··· 77 78 $view = id(new PHUIPropertyListView()) 78 79 ->setUser($viewer) 79 80 ->setObject($user); 81 + 82 + $field_list = PhabricatorCustomField::getObjectFields( 83 + $user, 84 + PhabricatorCustomField::ROLE_VIEW); 85 + $field_list->appendFieldsToPropertyList($user, $viewer, $view); 80 86 81 87 return $view; 82 88 }
+6
src/applications/project/controller/PhabricatorProjectManageController.php
··· 132 132 pht('Looks Like'), 133 133 $viewer->renderHandle($project->getPHID())->setAsTag(true)); 134 134 135 + 136 + $field_list = PhabricatorCustomField::getObjectFields( 137 + $project, 138 + PhabricatorCustomField::ROLE_VIEW); 139 + $field_list->appendFieldsToPropertyList($project, $viewer, $view); 140 + 135 141 return $view; 136 142 } 137 143