Bugfix Incorrect object for execute

Change object for execute in SaveButtons
This commit is contained in:
steve-lad 2021-06-17 15:12:50 +02:00
parent 218e1c66ee
commit 82772eed71

View file

@ -310,7 +310,7 @@ class dbinterface
$stmt->bindParam(':instance', $button_array['instance'],\PDO::PARAM_INT);
$stmt->bindParam(':buttontype', $button_array['type'],\PDO::PARAM_STR);
$stmt->bindParam(':name', $button_array['name'],\PDO::PARAM_STR);
$result= $dbh->execute();
$result= $stmt->execute();
}
break;
case 'add':