From 594320adc08685215c8be26e5339b58704475b36 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Fri, 10 Jan 2020 15:14:14 +0100 Subject: [inc/Util] Fix rounding of large (float) values --- inc/util.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'inc/util.inc.php') diff --git a/inc/util.inc.php b/inc/util.inc.php index a15b9faf..bddf0e45 100644 --- a/inc/util.inc.php +++ b/inc/util.inc.php @@ -239,7 +239,7 @@ SADFACE; */ public static function readableFileSize($bytes, $decimals = -1, $shift = 0) { - $bytes = round($bytes); + $bytes = sprintf('%u', $bytes); // round doesn't reliably work for large floats static $sz = array('Byte', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB'); $factor = (int)floor((strlen($bytes) - 1) / 3); if ($factor === 0) { -- cgit v1.2.3-55-g7522