diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2003-06-29 10:59:36 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-06-29 10:59:36 +0000 |
commit | 4d6a76730501a55e696971845c90f364a3921512 (patch) | |
tree | 107f63c438532906a5b5ad72576fb3e39d1259ed /phpBB/install | |
parent | b85637fc1a326803f70dbf8018ed505cb0258010 (diff) | |
download | forums-4d6a76730501a55e696971845c90f364a3921512.tar forums-4d6a76730501a55e696971845c90f364a3921512.tar.gz forums-4d6a76730501a55e696971845c90f364a3921512.tar.bz2 forums-4d6a76730501a55e696971845c90f364a3921512.tar.xz forums-4d6a76730501a55e696971845c90f364a3921512.zip |
a few fixes
git-svn-id: file:///svn/phpbb/trunk@4184 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/install.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index 8b16a148fe..bb0713c6ca 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -194,6 +194,11 @@ if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && !$language) } } +if (!$language) +{ + $language = $default_language; +} + include($phpbb_root_path . 'language/' . $language . '/lang_main.'.$phpEx); include($phpbb_root_path . 'language/' . $language . '/lang_admin.'.$phpEx); |