diff options
Diffstat (limited to 'pages/about.inc')
-rw-r--r-- | pages/about.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/about.inc b/pages/about.inc index d6b0eeb..3e89cf5 100644 --- a/pages/about.inc +++ b/pages/about.inc @@ -48,7 +48,7 @@ function prettySize($bytes) { if ($bytes > 1024) { if ($bytes > 1024**2) { if ($bytes > 1024**3) { - return round($bytes / 1024**3, 1) . " MB"; + return round($bytes / 1024**3, 1) . " GB"; } else { return round($bytes / 1024**2, 1) . " MB"; } |