mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:37:02 +02:00
gui improvements
This commit is contained in:
@ -90,9 +90,9 @@ class ModelHealthHealth extends Model {
|
||||
if(isset($p[5]) && in_array($p[5], $partitions)) {
|
||||
$shortinfo[] = array(
|
||||
'partition' => $p[5],
|
||||
'freespace' => nice_size(1000*$p[3]),
|
||||
'total' => nice_size(1000*$p[1]),
|
||||
'used' => nice_size(1000*$p[2]),
|
||||
'freespace' => $p[3],
|
||||
'total' => $p[1],
|
||||
'used' => $p[2],
|
||||
'utilization' => preg_replace("/\%/", "", $p[4])
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user