@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, fix an issue with StoredCustomFields that serialize, like JIRA

+5
+5
src/applications/differential/customfield/DifferentialStoredCustomField.php
··· 39 39 return $this; 40 40 } 41 41 42 + public function setValueFromApplicationTransactions($value) { 43 + $this->setValue($value); 44 + return $this; 45 + } 46 + 42 47 }