mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-02 19:01:03 +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:
parent
28d0094856
commit
f3a2d2b020
1 changed files with 1 additions and 0 deletions
|
@ -226,6 +226,7 @@ abstract class PhabricatorCursorPagedPolicyAwareQuery
|
||||||
protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) {
|
protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) {
|
||||||
$joins = array();
|
$joins = array();
|
||||||
$joins[] = $this->buildEdgeLogicJoinClause($conn);
|
$joins[] = $this->buildEdgeLogicJoinClause($conn);
|
||||||
|
$joins[] = $this->buildApplicationSearchJoinClause($conn);
|
||||||
return $joins;
|
return $joins;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue