From 5765d49e012b2b73042c3891925ae90df3ac5b08 Mon Sep 17 00:00:00 2001 From: pbs2h22aal Date: Thu, 14 Dec 2023 20:03:29 +0100 Subject: [PATCH] BestellungUndGericht --- Controller/BestellungController.php | 2 +- Model/BestellungModel.php | 2 +- Model/GerichtModel.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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. ",";