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

Maniphest - fix bug updating tasks with blocked relationships

Summary: Ref T5604. Found this trying to open T5604 live. Basically this internal query needs the needSubscriberPHID set to true.

Test Plan: doing it live

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T5604

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

+1
+1
src/applications/maniphest/editor/ManiphestTransactionEditor.php
··· 369 369 $blocked_tasks = id(new ManiphestTaskQuery()) 370 370 ->setViewer($this->getActor()) 371 371 ->withPHIDs($blocked_phids) 372 + ->needSubscriberPHIDs(true) 372 373 ->execute(); 373 374 374 375 $old = $unblock_xaction->getOldValue();