From 14556cf5870dff8138c76a25aba9c2c0323c56d1 Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sat, 11 Jul 2009 01:09:59 +0000 Subject: hopefully fixes the problems that some had with server analysis --- system.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/system.php b/system.php index 24295c715..549c51de4 100644 --- a/system.php +++ b/system.php @@ -21,6 +21,9 @@ function tp_readable_size($bytes) { + if (strpos($bytes, 'M')) + return $bytes . 'B'; + $size = $bytes / 1024; if ($size < 1024) { $size = number_format($size, 2); @@ -72,7 +75,7 @@ Memory Available to PHP - B + Change memory_limit to increase -- cgit v1.2.3