This commit is contained in:
Lee 2023-04-15 14:26:42 +01:00
parent 75900d5c12
commit af4e98dbae

@ -23,6 +23,7 @@ function isZipFile($file)
{
$fileType = strtolower(pathinfo($file, PATHINFO_EXTENSION));
echo $fileType;
die();
return $fileType == "zip";
}