Browse Source

kilo has a small 'k'.

Thijs Kinkhorst 19 years ago
parent
commit
37722cf3a4
1 changed files with 1 additions and 1 deletions
  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;