From d8df20c4519cc2a3f0e14206a7276832f05ca545 Mon Sep 17 00:00:00 2001 From: kink Date: Sun, 10 Sep 2006 08:30:13 +0000 Subject: [PATCH] kibibyte is with a capital K git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11688 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/strings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/strings.php b/functions/strings.php index db0f25fb..b804a6f0 100644 --- a/functions/strings.php +++ b/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; -- 2.25.1