aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2011-08-29 20:06:17 -0400
committerNils Adermann <naderman@naderman.de>2011-09-29 15:42:49 +0200
commit018a8359974273b65a3e6bd8aeca75396fd36a5b (patch)
treec57a3336338fb61e909e7675140b88ec504c74c9 /phpBB
parent48391d2dde8f40e3c7e7d4a41b8ff1c32508ffc1 (diff)
downloadforums-018a8359974273b65a3e6bd8aeca75396fd36a5b.tar
forums-018a8359974273b65a3e6bd8aeca75396fd36a5b.tar.gz
forums-018a8359974273b65a3e6bd8aeca75396fd36a5b.tar.bz2
forums-018a8359974273b65a3e6bd8aeca75396fd36a5b.tar.xz
forums-018a8359974273b65a3e6bd8aeca75396fd36a5b.zip
[feature/extension-manager] The default fulltext native backend was renamed
This was done to make it autoloadable. PHPBB3-10323
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/install/install_install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index c6b315ae6c..5ea3525edd 100644
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -1465,7 +1465,7 @@ class install_install extends module
set_config_count(null, null, null, $config);
$error = false;
- $search = new fulltext_native($error);
+ $search = new phpbb_search_fulltext_native($error);
$sql = 'SELECT post_id, post_subject, post_text, poster_id, forum_id
FROM ' . POSTS_TABLE;