1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-07 16:15:22 +02:00
git-svn-id: file:///svn/phpbb/trunk@7017 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-02-20 03:01:17 +00:00
parent 4805ae6542
commit e88e01ec64

View File

@ -90,7 +90,7 @@ class install_convert extends module
function main($mode, $sub) 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; global $convert;
$this->tpl_name = 'install_convert'; $this->tpl_name = 'install_convert';
@ -114,7 +114,7 @@ class install_convert extends module
$template->assign_vars(array( $template->assign_vars(array(
'S_NOT_INSTALLED' => true, 'S_NOT_INSTALLED' => true,
'TITLE' => $lang['BOARD_NOT_INSTALLED'], '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; return;