Changeset 5357

Show
Ignore:
Timestamp:
12/06/07 02:07:13 (5 years ago)
Author:
p_lindheimer
Message:

#2301 formatting tweaks to dashboard display for some corner case full disks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.4/dashboard/page.index.php

    r5310 r5357  
    194194  $out .= "<h4>"._("Disks")."</h4>"; 
    195195  foreach ($sysinfo->filesystems() as $fs) { 
    196     $out .= draw_graph($fs["mount"], "GB", number_format($fs["used"]/1024/1024, 2), $fs["size"]/1024/1024, strpos( $fs["options"],"ro" )!==false ? array(0=>"graphok"):null); 
     196    $out .= draw_graph($fs["mount"], "GB", number_format($fs["used"]/1024/1024, 2), number_format($fs["size"]/1024/1024,2), strpos( $fs["options"],"ro" )!==false ? array(0=>"graphok"):null); 
    197197  } 
    198198