aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-10-05 22:55:19 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-10-05 22:55:19 +0530
commited19176aaf9cf29e70505ddbeae7f8986c201f66 (patch)
tree09f9ed695ad6e90de297e601e7d464a847ec4263
parente8c7f8134df38708e1af27325d2c8a7b9f28052e (diff)
downloadforums-ed19176aaf9cf29e70505ddbeae7f8986c201f66.tar
forums-ed19176aaf9cf29e70505ddbeae7f8986c201f66.tar.gz
forums-ed19176aaf9cf29e70505ddbeae7f8986c201f66.tar.bz2
forums-ed19176aaf9cf29e70505ddbeae7f8986c201f66.tar.xz
forums-ed19176aaf9cf29e70505ddbeae7f8986c201f66.zip
[ticket/11888] Use \phpbb\search\fulltext_native as search backend config
If \ is missing, the default search backend shown in ACP is wrong. PHPBB3-11888
-rw-r--r--phpBB/install/schemas/schema_data.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql
index 70138f35fd..4458dde6a3 100644
--- a/phpBB/install/schemas/schema_data.sql
+++ b/phpBB/install/schemas/schema_data.sql
@@ -237,7 +237,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_block_size'
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_gc', '7200');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_interval', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_anonymous_interval', '0');
-INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_type', 'phpbb\search\fulltext_native');
+INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_type', '\phpbb\search\fulltext_native');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_store_results', '1800');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_deny', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_empty_referer', '1');