percentage should be a float instead of an integer

This commit is contained in:
DL6ER
2017-05-10 21:02:02 +02:00
parent 3760482585
commit f46a1c166f

View File

@@ -45,7 +45,7 @@ if (isset($_GET['summary']) || isset($_GET['summaryRaw']) || !count($_GET))
}
else
{
$stats[$tmp[0]] = intval($tmp[1]);
$stats[$tmp[0]] = floatval($tmp[1]);
}
}
$data = array_merge($data,$stats);