From a9ce366b6652287db7d32bfe6e2824f25c0200c5 Mon Sep 17 00:00:00 2001 From: Marius Burkard <m.burkard@pixcept.de> Date: Thu, 27 Jul 2017 20:45:15 +0200 Subject: [PATCH] - remoting: assigned client template delete, fixes #4734 --- interface/lib/classes/remote.d/client.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/lib/classes/remote.d/client.inc.php b/interface/lib/classes/remote.d/client.inc.php index 55850a5666..5d71938336 100644 --- a/interface/lib/classes/remote.d/client.inc.php +++ b/interface/lib/classes/remote.d/client.inc.php @@ -331,7 +331,7 @@ class remoting_client extends remoting { 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 = $app->db->queryOneRecord('SELECT `client_id` FROM `client` WHERE `client_id` = ?', $client_id); if(!$check) { @@ -349,7 +349,7 @@ class remoting_client extends remoting { $this->_set_client_formdata($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(); $app->plugin->raiseEvent('client:client:on_after_update', $this); -- GitLab