diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-01-19 10:37:20 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-01-19 10:41:12 +0100 |
commit | 930555bd5e349cddee9905d83d5435ae3b7a1ea4 (patch) | |
tree | a3ef6af8c4ed190915d068d77788bb1ac4e27634 /lib/private/helper.php | |
parent | 80fa6d5731ad563e7439dfc8c94c88afcf2f2fde (diff) | |
download | nextcloud-server-930555bd5e349cddee9905d83d5435ae3b7a1ea4.tar.gz nextcloud-server-930555bd5e349cddee9905d83d5435ae3b7a1ea4.zip |
properly use standard
* JEDEC standard - https://en.wikipedia.org/wiki/JEDEC_memory_standards#Unit_prefixes_for_semiconductor_storage_capacity
Diffstat (limited to 'lib/private/helper.php')
-rw-r--r-- | lib/private/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/helper.php b/lib/private/helper.php index 3590eaee612..c387cd40a24 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -112,7 +112,7 @@ class OC_Helper { } $bytes = round($bytes / 1024, 0); if ($bytes < 1024) { - return "$bytes kB"; + return "$bytes KB"; } $bytes = round($bytes / 1024, 1); if ($bytes < 1024) { |