mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-03 16:09:33 +00:00
using the correct comparison here would be a good idea, I think
This commit is contained in:
parent
90ff72ffc7
commit
a858d133d0
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user