We're talking Megabytes here, not millibytes :)
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 12 Feb 2003 05:52:59 +0000 (05:52 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 12 Feb 2003 05:52:59 +0000 (05:52 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4521 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/strings.php

index cfd0a6230bf17fd9eac8d97144166da1e46c808f..96e8fb5ebf1473faa0aefd977bd568b8aafaa14b 100644 (file)
@@ -365,7 +365,7 @@ function show_readable_size($bytes) {
     
     if ($bytes / 1024 > 1) {
         $bytes /= 1024;
-        $type = 'm';
+        $type = 'M';
     }
     
     if ($bytes < 10) {