1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-21 04:50:55 +01:00

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
This commit is contained in:
Bob Trahan 2014-12-11 10:31:14 -08:00
parent b718b429af
commit a2126631f3

View file

@ -369,6 +369,7 @@ final class ManiphestTransactionEditor
$blocked_tasks = id(new ManiphestTaskQuery())
->setViewer($this->getActor())
->withPHIDs($blocked_phids)
->needSubscriberPHIDs(true)
->execute();
$old = $unblock_xaction->getOldValue();