diff --git a/lib/functions/phphelpers/function.size_readable.php b/lib/functions/phphelpers/function.size_readable.php index eafacd2d..5f6ad0b5 100644 --- a/lib/functions/phphelpers/function.size_readable.php +++ b/lib/functions/phphelpers/function.size_readable.php @@ -14,7 +14,7 @@ function size_readable($size, $max = null, $system = 'si', $retstring = '%01.2f %s') { // Pick units - $systems['si']['prefix'] = array('B', 'K', 'MB', 'GB', 'TB', 'PB'); + $systems['si']['prefix'] = array('B', 'KB', 'MB', 'GB', 'TB', 'PB'); $systems['si']['size'] = 1000; $systems['bi']['prefix'] = array('B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB'); $systems['bi']['size'] = 1024;