Changeset 7300

Show
Ignore:
Timestamp:
11/23/08 01:15:27 (2 years ago)
Author:
mickecarlsson
Message:

Fixes #3409, dashboard display wrong statistics and color when disk storage is above 1Tb

Files:

Legend:

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

    r7286 r7300  
    202202        $out .= "<h4>"._("Disks")."</h4>"; 
    203203        foreach ($sysinfo->filesystems() as $fs) { 
    204                 $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); 
     204                $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); 
    205205        } 
    206206