Browse Source

We're talking Megabytes here, not millibytes :)

Thijs Kinkhorst 22 years ago
parent
commit
2ebce64cba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      functions/strings.php

+ 1 - 1
functions/strings.php

@@ -365,7 +365,7 @@ function show_readable_size($bytes) {
     
     
     if ($bytes / 1024 > 1) {
     if ($bytes / 1024 > 1) {
         $bytes /= 1024;
         $bytes /= 1024;
-        $type = 'm';
+        $type = 'M';
     }
     }
     
     
     if ($bytes < 10) {
     if ($bytes < 10) {