mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 16:52:41 +01:00
Make searching by tags work in Phriction
Summary: Fixes T12860. Some joins were being dropped because we didn't call `parent::...` Test Plan: - Tagged a document. - Searched for documents with that tag. - Before change: got all documents. - After change: got only tagged documents. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12860 Differential Revision: https://secure.phabricator.com/D18145
This commit is contained in:
parent
eb201fce38
commit
519bec3e6f
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ final class PhrictionDocumentQuery
|
|||
}
|
||||
|
||||
protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) {
|
||||
$joins = array();
|
||||
$joins = parent::buildJoinClauseParts($conn);
|
||||
|
||||
if ($this->getOrderVector()->containsKey('updated')) {
|
||||
$content_dao = new PhrictionContent();
|
||||
|
|
Loading…
Reference in a new issue