Check file exists before unlinking in 'file_unlink'

This commit is contained in:
discomrade 2022-03-03 00:12:31 -01:00 committed by -
parent 4eae6fd37e
commit 837fe4d6fa

View File

@ -795,12 +795,16 @@ function file_unlink($path) {
$debug['unlink'][] = $path;
}
$ret = @unlink($path);
if (file_exists($path)) {
$ret = @unlink($path);
if ($config['gzip_static']) {
$gzpath = "$path.gz";
if ($config['gzip_static']) {
$gzpath = "$path.gz";
@unlink($gzpath);
@unlink($gzpath);
}
} else {
$ret = false;
}
if (isset($config['purge']) && $path[0] != '/' && isset($_SERVER['HTTP_HOST'])) {