From 12ba3753caafa958b2f0dee7154c619122f3bafa Mon Sep 17 00:00:00 2001 From: markjcrane Date: Tue, 11 Aug 2015 13:24:07 -0600 Subject: [PATCH] Fix destination context for the destinations select list. --- app/destinations/app_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/destinations/app_config.php b/app/destinations/app_config.php index 5fc09658d1..138a410c98 100644 --- a/app/destinations/app_config.php +++ b/app/destinations/app_config.php @@ -25,7 +25,7 @@ $apps[$x]['destinations'][$y]['type'] = "sql"; $apps[$x]['destinations'][$y]['label'] = "destinations"; $apps[$x]['destinations'][$y]['name'] = "destinations"; - $apps[$x]['destinations'][$y]['sql'] = "select destination_number as destination, destination_description as description from v_destinations "; + $apps[$x]['destinations'][$y]['sql'] = "select destination_number as destination, destination_context as context, destination_description as description from v_destinations "; $apps[$x]['destinations'][$y]['where'] = "where domain_uuid = '\${domain_uuid}' and destination_type = 'outbound' and destination_enabled = 'true' "; $apps[$x]['destinations'][$y]['order_by'] = "destination_number asc"; $apps[$x]['destinations'][$y]['field']['uuid'] = "destination_uuid";