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

Surface edits to "Text" panels on dashboards as remarkup edits

Summary: Fixes T13456. These edits are remarkup edits and should attach files, trigger mentions, and so on.

Test Plan: Created a text panel, dropped a file in. After changes, saw the file attach properly.

Maniphest Tasks: T13456

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

+10
+10
src/applications/dashboard/xaction/panel/PhabricatorDashboardTextPanelTextTransaction.php
··· 9 9 return 'text'; 10 10 } 11 11 12 + public function newRemarkupChanges() { 13 + $changes = array(); 14 + 15 + $changes[] = $this->newRemarkupChange() 16 + ->setOldValue($this->getOldValue()) 17 + ->setNewValue($this->getNewValue()); 18 + 19 + return $changes; 20 + } 21 + 12 22 }