@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 default value for <select /> standard custom fields

Summary: We aren't setting the value for select fields correctly, so when
editing they always show the first value instead of the correct value.

Test Plan: Set task from Apple -> Banana and Carrot -> Potato, saved, hit
"Edit", saw Banana / Potato.

Auditors: btrahan

+1
+1
src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldSelect.php
··· 69 69 ->setLabel($this->getFieldName()) 70 70 ->setCaption($this->getCaption()) 71 71 ->setName($this->getFieldKey()) 72 + ->setValue($this->getFieldValue()) 72 73 ->setOptions($this->getOptions()); 73 74 } 74 75