@@ -706,11 +706,11 @@ function OneTimePadCreate ($length=100) {
*/
function show_readable_size($bytes) {
$bytes /= 1024;
- $type = 'k';
+ $type = 'KiB';
if ($bytes / 1024 > 1) {
- $type = 'M';
+ $type = 'MiB';
}
if ($bytes < 10) {
@@ -1291,4 +1291,4 @@ function sq_trim_value ( &$value ) {
$value = trim($value);
-?>
+?>