From 65e89c239e7ed2d8feb4ca87974a81db702005e8 Mon Sep 17 00:00:00 2001 From: Austin McKinley Date: Thu, 3 Jan 2019 11:24:41 -0800 Subject: [PATCH] Add status to PhabricatorProjectQuery->getPagingValueMap() Summary: Probably fixes https://discourse.phabricator-community.org/t/unhandled-exception-for-certain-fields-in-maniphest-search/2263. Couldn't repro this locally, but this is almost certainly the correct fix. Test Plan: doitlive Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D19951 --- src/applications/project/query/PhabricatorProjectQuery.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/project/query/PhabricatorProjectQuery.php b/src/applications/project/query/PhabricatorProjectQuery.php index 293378355e..6f81bc5e68 100644 --- a/src/applications/project/query/PhabricatorProjectQuery.php +++ b/src/applications/project/query/PhabricatorProjectQuery.php @@ -200,6 +200,7 @@ final class PhabricatorProjectQuery return array( 'id' => $project->getID(), 'name' => $project->getName(), + 'status' => $project->getStatus(), ); }