We're talking Megabytes here, not millibytes :)
[squirrelmail.git] / functions / strings.php
index e7d6af74033ec58d5a7e30ef4df965aae748df54..96e8fb5ebf1473faa0aefd977bd568b8aafaa14b 100644 (file)
@@ -16,7 +16,7 @@
  * SquirrelMail version number -- DO NOT CHANGE
  */
 global $version;
-$version = '1.4.0 RC2a';
+$version = '1.4.0 [CVS-DEVEL]';
 
 /** 
  * SquirrelMail internal version number -- DO NOT CHANGE
@@ -365,7 +365,7 @@ function show_readable_size($bytes) {
     
     if ($bytes / 1024 > 1) {
         $bytes /= 1024;
-        $type = 'm';
+        $type = 'M';
     }
     
     if ($bytes < 10) {