From e48c6159451457ee0078c513e6474852e3667a27 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 10 Nov 2023 16:22:04 +0100 Subject: [PATCH] fix(global-search): Fix documented default config value Signed-off-by: Joas Schilling --- config/config.sample.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index ab86feedb8520..9a2f2a3f13197 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1945,7 +1945,7 @@ * * Example for windows systems: ``array('?', '<', '>', ':', '*', '|', '"', chr(0), "\n", "\r")`` * see https://en.wikipedia.org/wiki/Comparison_of_file_systems#Limits - * + * * Defaults to ``array()`` */ 'forbidden_chars' => [], @@ -2399,7 +2399,7 @@ /** * Enable use of old unified search * - * Defaults to ``false`` + * Defaults to ``true`` */ -'unified_search.enabled' => false, +'unified_search.enabled' => true, ];