diff options
author | David M <davidmj@users.sourceforge.net> | 2007-02-20 03:01:17 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2007-02-20 03:01:17 +0000 |
commit | e88e01ec645bc25e5d4a45c6d97bc006d24945df (patch) | |
tree | fe1363d1078e3fa0077a027628d4ca1d3d8e20ba | |
parent | 4805ae65427c9018c8ce9d66fdeef6c2b6a57c42 (diff) | |
download | forums-e88e01ec645bc25e5d4a45c6d97bc006d24945df.tar forums-e88e01ec645bc25e5d4a45c6d97bc006d24945df.tar.gz forums-e88e01ec645bc25e5d4a45c6d97bc006d24945df.tar.bz2 forums-e88e01ec645bc25e5d4a45c6d97bc006d24945df.tar.xz forums-e88e01ec645bc25e5d4a45c6d97bc006d24945df.zip |
#8214
git-svn-id: file:///svn/phpbb/trunk@7017 89ea8834-ac86-4346-8a33-228a782c2dd0
-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 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; |