Skip to content
Snippets Groups Projects
Commit a9ce366b authored by Marius Burkard's avatar Marius Burkard
Browse files

- remoting: assigned client template delete, fixes #4734

parent b3829038
No related branches found
No related tags found
No related merge requests found
...@@ -331,7 +331,7 @@ class remoting_client extends remoting { ...@@ -331,7 +331,7 @@ class remoting_client extends remoting {
return false; return false;
} }
if(@is_numeric($client_id) && @is_numeric($template_id)) { if(@is_numeric($client_id) && @is_numeric($assigned_template_id)) {
// check if client exists // check if client exists
$check = $app->db->queryOneRecord('SELECT `client_id` FROM `client` WHERE `client_id` = ?', $client_id); $check = $app->db->queryOneRecord('SELECT `client_id` FROM `client` WHERE `client_id` = ?', $client_id);
if(!$check) { if(!$check) {
...@@ -349,7 +349,7 @@ class remoting_client extends remoting { ...@@ -349,7 +349,7 @@ class remoting_client extends remoting {
$this->_set_client_formdata($client_id); $this->_set_client_formdata($client_id);
$sql = "DELETE FROM `client_template_assigned` WHERE `assigned_template_id` = ? AND `client_id` = ?"; $sql = "DELETE FROM `client_template_assigned` WHERE `assigned_template_id` = ? AND `client_id` = ?";
$app->db->query($sql, $template_id, $client_id); $app->db->query($sql, $assigned_template_id, $client_id);
$affected_rows = $app->db->affectedRows(); $affected_rows = $app->db->affectedRows();
$app->plugin->raiseEvent('client:client:on_after_update', $this); $app->plugin->raiseEvent('client:client:on_after_update', $this);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment