1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-04 16:39:34 +00:00

using the correct comparison here would be a good idea, I think

This commit is contained in:
狼耳 2017-03-12 18:38:29 +01:00 committed by GitHub
parent 90ff72ffc7
commit a858d133d0

View File

@ -209,7 +209,7 @@ function purgeFiles()
pow(1-($fileSize/$MAX_FILESIZE),$DECAY_EXP); pow(1-($fileSize/$MAX_FILESIZE),$DECAY_EXP);
//delete if older //delete if older
if ($fileAge > $MIN_FILEAGE) if ($fileAge > $fileMaxAge)
{ {
unlink($file); unlink($file);
@ -222,7 +222,7 @@ function purgeFiles()
$totalSize += $fileSize; $totalSize += $fileSize;
} }
} }
printf("Purge finished. Deleted %d files totalling %d MB\n", printf("Purge finished. Deleted %d files totalling %d MiB\n",
$numDel, $numDel,
$totalSize); $totalSize);
} }