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

add missing needprojectphids for project reports

Summary: Adds a missing needProjectPHIDs called in the project reports. Fixes T6833

Test Plan: visited all task reports

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley

Maniphest Tasks: T6833

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

authored by

Fabian Stelzer and committed by
epriestley
b642359e d0952764

+10 -3
+10 -3
src/applications/maniphest/controller/ManiphestReportController.php
··· 700 700 701 701 $ids = ipull($rows, 'id'); 702 702 703 - return id(new ManiphestTaskQuery()) 703 + $query = id(new ManiphestTaskQuery()) 704 704 ->setViewer($this->getRequest()->getUser()) 705 - ->withIDs($ids) 706 - ->execute(); 705 + ->withIDs($ids); 706 + 707 + switch ($this->view) { 708 + case 'project': 709 + $query->needProjectPHIDs(true); 710 + break; 711 + } 712 + 713 + return $query->execute(); 707 714 } 708 715 709 716 /**