[ticket/13685] This should take care of the rest

PHPBB3-13685
This commit is contained in:
brunoais 2015-06-08 18:09:48 +01:00
parent 823783773c
commit 6e8da5a424
2 changed files with 2 additions and 2 deletions

View file

@ -632,7 +632,7 @@ class acp_main
{ {
$error = false; $error = false;
$search_type = $config['search_type']; $search_type = $config['search_type'];
$search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $phpbb_dispatcher, $user); $search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user, $phpbb_dispatcher);
if (!$search->index_created()) if (!$search->index_created())
{ {

View file

@ -796,7 +796,7 @@ class install_convert extends module
} }
$error = false; $error = false;
$convert->fulltext_search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $phpbb_dispatcher, $user); $convert->fulltext_search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user, $phpbb_dispatcher);
if ($error) if ($error)
{ {