diff --git a/lib/upload.php b/lib/upload.php index 4b148de..b62d84e 100644 --- a/lib/upload.php +++ b/lib/upload.php @@ -183,6 +183,7 @@ function fileExists(int $fileId, bool $onlyMine = true): bool|string if (!$onlyMine && !isAdmin()) { $onlyMine = true; } + echo "whyya"; $query = $onlyMine ? 'SELECT Path FROM Files WHERE ID = ? AND UploadedBy = ?' : 'SELECT Path FROM Files WHERE ID = ?'; $stmtfileexists = $mysqli->prepare($query); if ($onlyMine) { @@ -195,7 +196,6 @@ function fileExists(int $fileId, bool $onlyMine = true): bool|string $stmtfileexists->execute(); if ($stmtfileexists->num_rows > 0){ return $filePath; - echo "whyy"; } else { return false;