removed comment

This commit is contained in:
David Kalemi 2025-06-30 10:11:01 +02:00
parent 5eb3e30114
commit 5c381740ff

View File

@ -98,7 +98,7 @@ class NotesModel extends Database
$checkParams = $this->isAdmin() ? [$noteId] : [$noteId, $userId];
$checkStmt->execute($checkParams);
if ($checkStmt->fetch()) {
return ['success' => true, 'message' => 'No changes made to the note.']; // Or false if you prefer
return ['success' => true, 'message' => 'No changes made to the note.'];
}
return ['success' => false, 'message' => 'Note not found or permission denied.'];
} catch (PDOException $e) {