@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 calls to attachFilePHIDs in Conpherence Reply Handler

Summary: I missed removing this during the file purge of '16. Fixes T11717

Test Plan: Will test live

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11717

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

+1 -7
+1 -7
src/applications/conpherence/mail/ConpherenceReplyHandler.php
··· 34 34 $user = $this->getActor(); 35 35 if (!$conpherence->getPHID()) { 36 36 $conpherence 37 - ->attachParticipants(array()) 38 - ->attachFilePHIDs(array()); 37 + ->attachParticipants(array()); 39 38 } else { 40 - $edge_type = PhabricatorObjectHasFileEdgeType::EDGECONST; 41 - $file_phids = PhabricatorEdgeQuery::loadDestinationPHIDs( 42 - $conpherence->getPHID(), 43 - $edge_type); 44 - $conpherence->attachFilePHIDs($file_phids); 45 39 $participants = id(new ConpherenceParticipant()) 46 40 ->loadAllWhere('conpherencePHID = %s', $conpherence->getPHID()); 47 41 $participants = mpull($participants, null, 'getParticipantPHID');