1
0
Fork 0

Merge remote-tracking branch 'bryanagee/master'

pull/1473/head
Jordi Boggiano 2013-01-10 17:55:14 +01:00
commit 7d8636046b
1 changed files with 2 additions and 0 deletions

View File

@ -16,8 +16,10 @@ if (function_exists('ini_set')) {
switch($unit) { switch($unit) {
case 'g': case 'g':
$value *= 1024; $value *= 1024;
//no break (cumulative multiplier)
case 'm': case 'm':
$value *= 1024; $value *= 1024;
//no break (cumulative multiplier)
case 'k': case 'k':
$value *= 1024; $value *= 1024;
} }