mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
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
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user