From e5f1e71c936450344f86a6ce4126e5d8264b1d91 Mon Sep 17 00:00:00 2001 From: kink Date: Wed, 12 Feb 2003 05:52:59 +0000 Subject: [PATCH] We're talking Megabytes here, not millibytes :) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4521 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 cfd0a623..96e8fb5e 100644 --- a/functions/strings.php +++ b/functions/strings.php @@ -365,7 +365,7 @@ function show_readable_size($bytes) { if ($bytes / 1024 > 1) { $bytes /= 1024; - $type = 'm'; + $type = 'M'; } if ($bytes < 10) { -- 2.25.1