From e88e01ec645bc25e5d4a45c6d97bc006d24945df Mon Sep 17 00:00:00 2001 From: David M Date: Tue, 20 Feb 2007 03:01:17 +0000 Subject: [PATCH] #8214 git-svn-id: file:///svn/phpbb/trunk@7017 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/install_convert.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php index c7432aeb42..ac35db14c2 100644 --- a/phpBB/install/install_convert.php +++ b/phpBB/install/install_convert.php @@ -90,7 +90,7 @@ class install_convert extends module function main($mode, $sub) { - global $lang, $template, $phpbb_root_path, $phpEx, $cache, $config; + global $lang, $template, $phpbb_root_path, $phpEx, $cache, $config, $language; global $convert; $this->tpl_name = 'install_convert'; @@ -114,7 +114,7 @@ class install_convert extends module $template->assign_vars(array( 'S_NOT_INSTALLED' => true, 'TITLE' => $lang['BOARD_NOT_INSTALLED'], - 'BODY' => sprintf($lang['BOARD_NOT_INSTALLED_EXPLAIN'], append_sid($phpbb_root_path . 'install/index.' . $phpEx, 'mode=install')), + 'BODY' => sprintf($lang['BOARD_NOT_INSTALLED_EXPLAIN'], append_sid($phpbb_root_path . 'install/index.' . $phpEx, 'mode=install&language=' . $language)), )); return;