Skip to content

Commit 7910fd4

Browse files
committed
TASK: Merge branch '5.0' into 6.0
# Conflicts: # .travis.yml
2 parents 6e7cfd0 + 98d00c1 commit 7910fd4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ before_install:
2121
- cd ..
2222
- git clone https://github.com/neos/neos-base-distribution.git -b ${NEOS_TARGET_VERSION}
2323
- cd neos-base-distribution
24-
- composer require --no-update --no-interaction flowpack/elasticsearch-contentrepositoryadaptor:dev-master
2524
- composer require --no-update --no-interaction neos/nodetypes
25+
- composer remove --no-update --no-interaction neos/site-kickstarter
26+
- composer require --no-update --no-interaction flowpack/elasticsearch-contentrepositoryadaptor:^6.0
2627
install:
2728
- composer install --no-interaction
2829
- cd ..

Classes/Eel/ElasticSearchQueryBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ public function count()
681681
public function fulltext($searchWord, array $options = [])
682682
{
683683
// We automatically enable result highlighting when doing fulltext searches. It is up to the user to use this information or not use it.
684-
$this->request->fulltext(trim(json_encode($searchWord), '"'), $options);
684+
$this->request->fulltext(trim(json_encode($searchWord, JSON_UNESCAPED_UNICODE), '"'), $options);
685685
$this->request->highlight(150, 2);
686686

687687
return $this;

0 commit comments

Comments
 (0)