Fix unreachable code
[squirrelmail.git] / functions / strings.php
index db0f25fb9489b5b894a3cc58502b48998c344953..b804a6f05d2192b92cb108f987e428f591e053b9 100644 (file)
@@ -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;