aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/index.php')
-rwxr-xr-xphpBB/install/index.php4
1 files changed, 2 insertions, 2 deletions
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);
}