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

Fix for D6260

Summary: Fixes a query in √D6260.

Test Plan: View a Releeph RQ and verify that the "churn" field renders and has the right numbers in it.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

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

+2 -3
+2 -3
src/applications/releeph/field/specification/ReleephDiffChurnFieldSpecification.php
··· 19 19 } 20 20 21 21 $diff_rev = $this->getReleephRequest()->loadDifferentialRevision(); 22 - $comments = id(new DifferentialRevisionQuery()) 23 - ->setViewer($this->getUser()) 22 + $comments = id(new DifferentialCommentQuery()) 24 23 ->withRevisionIDs(array($diff_rev->getID())) 25 - ->excute(); 24 + ->execute(); 26 25 27 26 $counts = array(); 28 27 foreach ($comments as $comment) {