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

Fix a bad call in ElasticSearch recovery code

Summary: Ref T4446. Some discussion in IRC. Prior to hitting the 1.0.0 issue, we hit and resolved this issue; this is a leftover call from bringing ApplicationSearch to main search.

Test Plan: User confirmed this fixes the issue.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T4446

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

+2 -1
+2 -1
src/applications/search/engine/PhabricatorSearchEngineElastic.php
··· 222 222 throw $ex; 223 223 } 224 224 $query = clone $query; 225 - $query->setQuery( 225 + $query->setParameter( 226 + 'query', 226 227 addcslashes( 227 228 $query->getParameter('query'), '+-&|!(){}[]^"~*?:\\')); 228 229 $response = $this->executeRequest($uri, $this->buildSpec($query));