diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-03 20:31:05 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-11-03 20:31:05 +0000 |
commit | 18d014c7656717fe09aba0cafe2967eae7cea421 (patch) | |
tree | 7e0a54c10e7d6f70d4c64c0e76f1289038a3a389 /phpBB/install | |
parent | 61fc9605faa29d1bc5b1be8df2a4ab7f36c92264 (diff) | |
download | forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.gz forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.bz2 forums-18d014c7656717fe09aba0cafe2967eae7cea421.tar.xz forums-18d014c7656717fe09aba0cafe2967eae7cea421.zip |
further fixes
- fix infinite loop on checking ban for those not having ever visited the page (or removed all session cookies)
- avatar width/height switched in language files
- fix windows switching to background on IE7 (smlies window for example)
git-svn-id: file:///svn/phpbb/trunk@8224 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rwxr-xr-x | phpBB/install/install_install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 6fb2cd4881..720eddebcd 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -482,7 +482,7 @@ class install_install extends module 'LEGEND_EXPLAIN' => $lang['FILES_OPTIONAL_EXPLAIN'], )); - $directories = array('config.'.$phpEx, 'images/avatars/upload/'); + $directories = array('config.' . $phpEx, 'images/avatars/upload/'); foreach ($directories as $dir) { @@ -931,7 +931,7 @@ class install_install extends module // Note that all we check is that the file has _something_ in it // We don't compare the contents exactly - if they can't upload // a single file correctly, it's likely they will have other problems.... - if (filesize($phpbb_root_path . 'config.'.$phpEx) > 10) + if (filesize($phpbb_root_path . 'config.' . $phpEx) > 10) { $written = true; } |