diff options
| author | David M <davidmj@users.sourceforge.net> | 2006-03-28 16:46:49 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2006-03-28 16:46:49 +0000 |
| commit | fe9590cf5a3946260d61748cfc2ac0e13f10c23b (patch) | |
| tree | 24ddbbf66a22fbd200cb0626ef8ee45d55ce14f9 /phpBB/install/install.php | |
| parent | 20e6dbb389b0eef201d192367d54ce3deac03c50 (diff) | |
| download | forums-fe9590cf5a3946260d61748cfc2ac0e13f10c23b.tar forums-fe9590cf5a3946260d61748cfc2ac0e13f10c23b.tar.gz forums-fe9590cf5a3946260d61748cfc2ac0e13f10c23b.tar.bz2 forums-fe9590cf5a3946260d61748cfc2ac0e13f10c23b.tar.xz forums-fe9590cf5a3946260d61748cfc2ac0e13f10c23b.zip | |
- Bug 1301
git-svn-id: file:///svn/phpbb/trunk@5743 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install.php')
| -rw-r--r-- | phpBB/install/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index eb02a0ec6b..bf8651f62f 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -184,7 +184,7 @@ if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && !$language) if (!$language) { $dir = @opendir($phpbb_root_path . 'language'); - while ($file = readdir($dir)) + while (($file = readdir($dir)) !== false) { $path = $phpbb_root_path . 'language/' . $file; |
