Changeset 5357
- Timestamp:
- 12/06/07 02:07:13 (5 years ago)
- Files:
-
- modules/branches/2.4/dashboard/page.index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4/dashboard/page.index.php
r5310 r5357 194 194 $out .= "<h4>"._("Disks")."</h4>"; 195 195 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); 197 197 } 198 198
