1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-21 13:00:56 +01:00

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
This commit is contained in:
epriestley 2015-04-29 13:28:48 -07:00
parent 28d0094856
commit f3a2d2b020

View file

@ -226,6 +226,7 @@ abstract class PhabricatorCursorPagedPolicyAwareQuery
protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) {
$joins = array();
$joins[] = $this->buildEdgeLogicJoinClause($conn);
$joins[] = $this->buildApplicationSearchJoinClause($conn);
return $joins;
}