diff --git a/files.php b/files.php
index 2399493..b6f6126 100644
--- a/files.php
+++ b/files.php
@@ -30,22 +30,22 @@
$ftime = filemtime("files/qf-current-snapshot.tar.gz");
print ("(" . date("M. j, g:i a", $ftime) . " PT)"); ?>
qf-current-snapshot.tar.gz
- $size = filesize("files/qf-current-snapshot.tar.gz"); $size /= 1024 ;
-print ("(". $size ."K"); ?>
+ $size = filesize("files/qf-current-snapshot.tar.gz"); $size /= 1048576 ;
+print ("(". round($size) ."MB)"); ?>
qf_current_snapshot.tar.bz2
- $size = filesize("files/qf-current-snapshot.tar.bz2"); $size /= 1024 ;
-print ("(". $size ."K"); ?>
+ $size = filesize("files/qf-current-snapshot.tar.bz2"); $size /= 1048576 ;
+print ("(". round($size) ."MB)"); ?>
qf_current_snapshot.zip
- $size = filesize("files/qf_current_snapshot.zip"); $size /= 1024 ;
-print ("(". $size ."K"); ?>
+ $size = filesize("files/qf_current_snapshot.zip"); $size /= 1048576 ;
+print ("(". round($size) ."MB)"); ?>