diff --git a/src/applications/project/controller/PhabricatorProjectProfileController.php b/src/applications/project/controller/PhabricatorProjectProfileController.php --- a/src/applications/project/controller/PhabricatorProjectProfileController.php +++ b/src/applications/project/controller/PhabricatorProjectProfileController.php @@ -201,6 +201,10 @@ ->withParentProjectPHIDs(array($project->getPHID())) ->needImages(true) ->withIsMilestone(true) + ->withStatuses( + array( + PhabricatorProjectStatus::STATUS_ACTIVE, + )) ->setOrder('newest') ->execute(); if (!$milestones) { @@ -244,6 +248,10 @@ ->setViewer($viewer) ->withParentProjectPHIDs(array($project->getPHID())) ->needImages(true) + ->withStatuses( + array( + PhabricatorProjectStatus::STATUS_ACTIVE, + )) ->withIsMilestone(false) ->setLimit($limit) ->execute();