From 11e62dd0fef499029744a33795aa7ac53e51c3b0 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Mon, 25 May 2020 05:04:52 +0000 Subject: [PATCH] Fix overlooked default parameter value git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14864 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 515e87e8..37e466fd 100644 --- a/functions/strings.php +++ b/functions/strings.php @@ -661,7 +661,7 @@ function OneTimePadCreate ($length=100) { * @since 1.0 * */ -function show_readable_size($bytes, $filesize_divisor) { +function show_readable_size($bytes, $filesize_divisor=1024) { $bytes /= $filesize_divisor; $type = _("KiB"); -- 2.25.1