mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 12:30:56 +01:00
Fix a typo in ManiphestTaskQuery
Summary: This doesn't have any impact on anything right now (we don't persist the query) but could in the future, so I just left it as-is but fixed the typo. Test Plan: looked at it carefully Reviewers: btrahan, chad Reviewed By: chad Subscribers: WikiChad, epriestley Differential Revision: https://secure.phabricator.com/D9155
This commit is contained in:
parent
1ec21dc81d
commit
cf6353e516
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ final class ManiphestTaskQuery
|
||||||
// In doing a fulltext search, we first find all the PHIDs that match the
|
// In doing a fulltext search, we first find all the PHIDs that match the
|
||||||
// fulltext search, and then use that to limit the rest of the search
|
// fulltext search, and then use that to limit the rest of the search
|
||||||
$fulltext_query = id(new PhabricatorSavedQuery())
|
$fulltext_query = id(new PhabricatorSavedQuery())
|
||||||
->setEngineClassName('PhabricatorSearchApplicaionSearchEngine')
|
->setEngineClassName('PhabricatorSearchApplicationSearchEngine')
|
||||||
->setParameter('query', $this->fullTextSearch);
|
->setParameter('query', $this->fullTextSearch);
|
||||||
|
|
||||||
// NOTE: Setting this to something larger than 2^53 will raise errors in
|
// NOTE: Setting this to something larger than 2^53 will raise errors in
|
||||||
|
|
Loading…
Reference in a new issue