From: inv-hareesh Date: Fri, 7 Feb 2025 03:29:36 +0000 (+0530) Subject: Fix search issue for words inside Guillemets (« ») without spaces X-Git-Tag: v25.02~1^2~14^2~1^2 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/d938565839e5c59576b45ccb6e8caa40baa7129d Fix search issue for words inside Guillemets (« ») without spaces --- diff --git a/app/Search/SearchIndex.php b/app/Search/SearchIndex.php index c7d9d6502..e10219e2d 100644 --- a/app/Search/SearchIndex.php +++ b/app/Search/SearchIndex.php @@ -16,7 +16,7 @@ class SearchIndex /** * A list of delimiter characters used to break-up parsed content into terms for indexing. */ - public static string $delimiters = " \n\t.,!?:;()[]{}<>`'\""; + public static string $delimiters = " \n\t.,!?:;()[]{}<>`'\"«»"; public function __construct( protected EntityProvider $entityProvider