1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 09:16:55 +02:00

Fixed charset issue in install (bug #647)

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3109 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt
2002-11-27 17:26:08 +00:00
parent f3530a69a8
commit abe31cd088
2 changed files with 5 additions and 3 deletions

View File

@@ -278,7 +278,8 @@ if( !defined("PHPBB_INSTALLED") )
);
$template->assign_vars(array(
"L_INSTALLATION" => $lang['Welcome_install'])
"L_INSTALLATION" => $lang['Welcome_install'],
"L_ENCODING" => $lang['ENCODING'])
);
}
else
@@ -336,7 +337,8 @@ else
);
$template->assign_vars(array(
"L_INSTALLATION" => $lang['Welcome_install'])
"L_INSTALLATION" => $lang['Welcome_install'],
"L_ENCODING" => $lang['ENCODING'])
);
$reinstall = true;