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

Make Pholio description behave as a remarkup field (e.g., subscribe mentioned users)

Summary: Ref T12732. This is pre-existing but fix it since I caught it while banging around.

Test Plan: {F4967442}

Reviewers: chad, amckinley

Reviewed By: chad

Maniphest Tasks: T12732

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

+10
+10
src/applications/pholio/xaction/PholioMockDescriptionTransaction.php
··· 44 44 ->setNewText($this->getNewValue()); 45 45 } 46 46 47 + public function newRemarkupChanges() { 48 + $changes = array(); 49 + 50 + $changes[] = $this->newRemarkupChange() 51 + ->setOldValue($this->getOldValue()) 52 + ->setNewValue($this->getNewValue()); 53 + 54 + return $changes; 55 + } 56 + 47 57 }