This commit is contained in:
redmatrix
2016-05-19 16:48:10 -07:00
parent fc239cb8a2
commit 6e7d7c5017
2 changed files with 5 additions and 0 deletions

View File

@@ -60,6 +60,8 @@ function phpiniSizeToBytes($val) {
$val *= 1024;
case 'k':
$val *= 1024;
default:
break;
}
return (int)$val;