From a858d133d007de94061cb009ef9f8c1f4652e9ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8B=BC=E8=80=B3?= Date: Sun, 12 Mar 2017 18:38:29 +0100 Subject: [PATCH] using the correct comparison here would be a good idea, I think --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index f468540..b9a15ab 100755 --- a/index.php +++ b/index.php @@ -209,7 +209,7 @@ function purgeFiles() pow(1-($fileSize/$MAX_FILESIZE),$DECAY_EXP); //delete if older - if ($fileAge > $MIN_FILEAGE) + if ($fileAge > $fileMaxAge) { unlink($file); @@ -222,7 +222,7 @@ function purgeFiles() $totalSize += $fileSize; } } - printf("Purge finished. Deleted %d files totalling %d MB\n", + printf("Purge finished. Deleted %d files totalling %d MiB\n", $numDel, $totalSize); }