Explorar el Código

kilo has a small 'k'.

Thijs Kinkhorst hace 19 años
padre
commit
37722cf3a4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      functions/strings.php

+ 1 - 1
functions/strings.php

@@ -712,7 +712,7 @@ function OneTimePadCreate ($length=100) {
  */
 function show_readable_size($bytes) {
     $bytes /= 1024;
-    $type = 'KiB';
+    $type = 'kiB';
 
     if ($bytes / 1024 > 1) {
         $bytes /= 1024;