浏览代码

We're talking Megabytes here, not millibytes :)

Thijs Kinkhorst 22 年之前
父节点
当前提交
2ebce64cba
共有 1 个文件被更改,包括 1 次插入1 次删除
  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) {