From e9d243a2309ed0529a9c32afd7e4cad38237df65 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 20 Jun 2018 23:26:47 -0600 Subject: [PATCH] Update destinations.php --- resources/classes/destinations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/classes/destinations.php b/resources/classes/destinations.php index 59d7dd5b6a..3ee916841d 100644 --- a/resources/classes/destinations.php +++ b/resources/classes/destinations.php @@ -304,7 +304,7 @@ class destinations { if ($action == 'delete') { foreach($destinations as $row) { if ($row['action'] == 'delete' or $row['checked'] == 'true') { - //get the list of dialplan uuid + //get the list destinations $sql = "select * from v_destinations "; $sql .= "where destination_uuid = '".$row['destination_uuid']."';"; $prep_statement = $this->db->prepare($sql);