diff options
author | brunoais <brunoaiss@gmail.com> | 2015-03-11 17:46:42 +0000 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2015-06-07 18:40:44 +0100 |
commit | 1e45a05000687994137adb7e415a9a39f9afd371 (patch) | |
tree | 104f9fa84ed16487823e3139ff57438aa9b75d40 /phpBB/install/install_convert.php | |
parent | 049f584111b5d7ce307d57d36b3be8a34d06194b (diff) | |
download | forums-1e45a05000687994137adb7e415a9a39f9afd371.tar forums-1e45a05000687994137adb7e415a9a39f9afd371.tar.gz forums-1e45a05000687994137adb7e415a9a39f9afd371.tar.bz2 forums-1e45a05000687994137adb7e415a9a39f9afd371.tar.xz forums-1e45a05000687994137adb7e415a9a39f9afd371.zip |
[ticket/13685] Add phpbb_dispatcher to fulltext search constructors
PHPBB3-13685
Diffstat (limited to 'phpBB/install/install_convert.php')
-rw-r--r-- | phpBB/install/install_convert.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php index e16c79474b..b132ece0d0 100644 --- a/phpBB/install/install_convert.php +++ b/phpBB/install/install_convert.php @@ -619,7 +619,7 @@ class install_convert extends module { global $template, $user, $phpbb_root_path, $phpEx, $db, $lang, $config, $cache, $auth; global $convert, $convert_row, $message_parser, $skip_rows, $language; - global $request, $phpbb_config_php_file; + global $request, $phpbb_config_php_file, $phpbb_dispatcher; extract($phpbb_config_php_file->get_all()); @@ -796,7 +796,7 @@ class install_convert extends module } $error = false; - $convert->fulltext_search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user); + $convert->fulltext_search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $phpbb_dispatcher, $user); if ($error) { |