Fix call center queue delete.

This commit is contained in:
markjcrane 2015-11-14 17:18:32 -07:00
parent d03db31518
commit e52339fc8f
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ if (strlen($id) > 0) {
//delete the call center queue
$sql = "delete from v_call_center_queues ";
$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= "and dialplan_uuid = '$dialplan_uuid' ";
$sql .= "and call_center_queue_uuid = '$id' ";
$db->query($sql);
unset($sql);