Skip to content

Commit d938565

Browse files
committed
Fix search issue for words inside Guillemets (« ») without spaces
1 parent 103a8a8 commit d938565

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Search/SearchIndex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class SearchIndex
1616
/**
1717
* A list of delimiter characters used to break-up parsed content into terms for indexing.
1818
*/
19-
public static string $delimiters = " \n\t.,!?:;()[]{}<>`'\"";
19+
public static string $delimiters = " \n\t.,!?:;()[]{}<>`'\"«»";
2020

2121
public function __construct(
2222
protected EntityProvider $entityProvider

0 commit comments

Comments
 (0)