Bug fixes

This commit is contained in:
2024-01-08 08:27:42 +01:00
parent b104c8a6fc
commit 7810fff20b
3 changed files with 5 additions and 5 deletions

View File

@@ -52,7 +52,7 @@
public function deleteEnthaelt($id){
$pdo=$this->linkDB();
$params = array();
$sql = "DELETE FROM Enthaelt WHERE id=:id";
$sql = "DELETE FROM Enthaelt WHERE id=:id;";
$params[":id"] = $id;
try{
$stmt = $pdo->prepare($sql);