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

View File

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