This commit is contained in:
Bruno Rybársky 2024-04-25 23:28:08 +02:00
parent e0ae787569
commit 79d5722bfb

@ -195,10 +195,10 @@ function fileExists(int $fileId, bool $onlyMine = true): bool|string
$stmtfileexists->execute(); $stmtfileexists->execute();
if ($stmtfileexists->num_rows > 0){ if ($stmtfileexists->num_rows > 0){
return $filePath; return $filePath;
echo "whyy";
} }
else { else {
return false; return false;
echo "why";
} }
} }