fix PHP 7.1 notices "non well formed numeric value" #52

This commit is contained in:
shevabam
2017-11-02 20:54:43 +01:00
parent f6dc271839
commit 725787bcf7
4 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ else
$load = array_map(
function ($value, $cores) {
$v = (int)($value * 100 / $cores);
$v = (int)((float)$value * 100 / $cores);
if ($v > 100)
$v = 100;
return $v;