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

Remove a stray `setActor()` on EdgeEditor

Summary: These got removed recently but I missed one callsite.

Test Plan: Used `git grep` to double check all other callsites.

Reviewers: joshuaspence

Reviewed By: joshuaspence

Subscribers: epriestley

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

+1 -2
+1 -2
src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
··· 2342 2342 return; 2343 2343 } 2344 2344 2345 - $editor = id(new PhabricatorEdgeEditor()) 2346 - ->setActor($this->getActor()); 2345 + $editor = new PhabricatorEdgeEditor(); 2347 2346 2348 2347 $src = $object->getPHID(); 2349 2348 $type = PhabricatorEdgeConfig::TYPE_OBJECT_HAS_FILE;