1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

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
This commit is contained in:
Austin McKinley 2019-01-03 11:24:41 -08:00
parent 9d5b933ed5
commit 65e89c239e

View file

@ -200,6 +200,7 @@ final class PhabricatorProjectQuery
return array(
'id' => $project->getID(),
'name' => $project->getName(),
'status' => $project->getStatus(),
);
}