Browse Source

We're talking Megabytes here, not millibytes :)

Thijs Kinkhorst 22 năm trước cách đây
mục cha
commit
2ebce64cba
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      functions/strings.php

+ 1 - 1
functions/strings.php

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