diff --git a/src/applications/search/ferret/PhabricatorFerretEngine.php b/src/applications/search/ferret/PhabricatorFerretEngine.php --- a/src/applications/search/ferret/PhabricatorFerretEngine.php +++ b/src/applications/search/ferret/PhabricatorFerretEngine.php @@ -75,7 +75,7 @@ public function tokenizeString($value) { $value = trim($value, ' '); - $value = preg_split('/ +/', $value); + $value = preg_split('/\s+/u', $value); return $value; }