diff --git a/Controller/BestellungController.php b/Controller/BestellungController.php index 2c9a493..5f74cc0 100644 --- a/Controller/BestellungController.php +++ b/Controller/BestellungController.php @@ -5,7 +5,7 @@ namespace ppb\Controller; use ppb\Library\Msg; -use ppb\Model\GerichtModel; +use ppb\Model\BestellungModel; class BestellungController { diff --git a/Model/BestellungModel.php b/Model/BestellungModel.php index c01076a..8327541 100644 --- a/Model/BestellungModel.php +++ b/Model/BestellungModel.php @@ -62,7 +62,7 @@ class BestellungModel extends Database { */ public function updateBestellung($id, $data){ $pdo = $this->linkDB(); - $sql = "UPDATE Bestellung SET " + $sql = "UPDATE Bestellung SET "; //Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein foreach (array_keys($data) as $key){ $sql .= $key . " = :" . $key. ","; diff --git a/Model/GerichtModel.php b/Model/GerichtModel.php index c1bdead..61a1027 100644 --- a/Model/GerichtModel.php +++ b/Model/GerichtModel.php @@ -62,7 +62,7 @@ class GerichtModel extends Database { */ public function updateGericht($id, $data){ $pdo = $this->linkDB(); - $sql = "UPDATE Gericht SET " + $sql = "UPDATE Gericht SET "; //Fügt alle Parameter und einen Platzhalter in den SQL Befehl ein foreach (array_keys($data) as $key){ $sql .= $key . " = :" . $key. ",";