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

Restore missing ApplicationSearch join clause for Maniphest

Summary: See IRC. This got dropped in the order refactoring.

Test Plan: Ordered Maniphest search results by a custom field.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

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

+1
+1
src/infrastructure/query/policy/PhabricatorCursorPagedPolicyAwareQuery.php
··· 226 226 protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) { 227 227 $joins = array(); 228 228 $joins[] = $this->buildEdgeLogicJoinClause($conn); 229 + $joins[] = $this->buildApplicationSearchJoinClause($conn); 229 230 return $joins; 230 231 } 231 232