diff --git a/lib/upload.php b/lib/upload.php index 9446b34..4a02e80 100644 --- a/lib/upload.php +++ b/lib/upload.php @@ -185,12 +185,12 @@ function fileExists(int $fileId, bool $onlyMine = true): bool|string } $query = $onlyMine ? 'SELECT Path FROM Files WHERE ID = ? AND UploadedBy = ?' : 'SELECT Path FROM Files WHERE ID = ?'; $stmtfileexists = $mysqli->prepare($query); - echo "aaddaad"; if ($onlyMine) { $stmtfileexists->bind_param('ii', $fileId, $_SESSION['id']); } else { $stmtfileexists->bind_param('i', $fileId); } + echo "aaddaad"; $filePath = ""; $stmtfileexists->bind_result($filePath); $stmtfileexists->execute();