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

+1
+1
src/applications/project/query/PhabricatorProjectQuery.php
··· 200 200 return array( 201 201 'id' => $project->getID(), 202 202 'name' => $project->getName(), 203 + 'status' => $project->getStatus(), 203 204 ); 204 205 } 205 206