From: kink Date: Wed, 12 Feb 2003 05:52:59 +0000 (+0000) Subject: We're talking Megabytes here, not millibytes :) X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=e5f1e71c936450344f86a6ce4126e5d8264b1d91;hp=a9e6867d754b9308ef13a8cdae638c450b5f3404 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 --- 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) {