1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 19:20:23 +02:00

[ticket/11052] constructor updated in installer and convertor

PHPBB3-11052
This commit is contained in:
Dhruv
2012-08-15 15:44:01 +05:30
parent 64ff06cf87
commit 484c0bec11
2 changed files with 4 additions and 4 deletions

View File

@@ -569,7 +569,7 @@ class install_convert extends module
*/
function convert_data($sub)
{
global $template, $user, $phpbb_root_path, $phpEx, $db, $lang, $config, $cache;
global $template, $user, $phpbb_root_path, $phpEx, $db, $lang, $config, $cache, $auth;
global $convert, $convert_row, $message_parser, $skip_rows, $language;
global $request;
@@ -750,7 +750,7 @@ class install_convert extends module
}
$error = false;
$convert->fulltext_search = new $search_type($error);
$convert->fulltext_search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user);
if ($error)
{