diff options
| author | Henry Sudhof <kellanved@phpbb.com> | 2007-06-14 15:24:09 +0000 |
|---|---|---|
| committer | Henry Sudhof <kellanved@phpbb.com> | 2007-06-14 15:24:09 +0000 |
| commit | e5151b0fc62c054f71ebe530070420bb6ff463c1 (patch) | |
| tree | df969640a05cc5a8b0f82c1e83d42b9e26d27ee6 /phpBB/install | |
| parent | 6813967ae1024d386c6f829256a66f9391791dda (diff) | |
| download | forums-e5151b0fc62c054f71ebe530070420bb6ff463c1.tar forums-e5151b0fc62c054f71ebe530070420bb6ff463c1.tar.gz forums-e5151b0fc62c054f71ebe530070420bb6ff463c1.tar.bz2 forums-e5151b0fc62c054f71ebe530070420bb6ff463c1.tar.xz forums-e5151b0fc62c054f71ebe530070420bb6ff463c1.zip | |
*grumble*
git-svn-id: file:///svn/phpbb/trunk@7756 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
| -rw-r--r-- | phpBB/install/convertors/convert_phpbb20.php | 2 | ||||
| -rwxr-xr-x | phpBB/install/index.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/convertors/convert_phpbb20.php b/phpBB/install/convertors/convert_phpbb20.php index 64e4c5726e..0e14757885 100644 --- a/phpBB/install/convertors/convert_phpbb20.php +++ b/phpBB/install/convertors/convert_phpbb20.php @@ -187,7 +187,7 @@ if (!$get_info) $src_db->sql_freeresult($result); } - elseif ($result) + else if ($result) { $src_db->sql_freeresult($result); } diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 5a1b997b73..101ea8e0c6 100755 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -113,11 +113,11 @@ if (!empty($mem_limit )) { $mem_limit = floor($mem_limit/1024); } - elseif ($unit == 'g') + else if ($unit == 'g') { $mem_limit *= 1024; } - elseif (is_numeric($unit)) + else if (is_numeric($unit)) { $mem_limit = floor($mem_limit/1048576); } |
