Просмотр исходного кода

We're talking Megabytes here, not millibytes :)

Thijs Kinkhorst 22 лет назад
Родитель
Сommit
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) {