Escape the $ in the domain_uuid variable.

This commit is contained in:
markjcrane
2015-08-05 18:17:39 -05:00
parent 51169dd358
commit 15ca076e09
13 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -26,7 +26,7 @@
$apps[$x]['destinations'][$y]['label'] = "time_conditions";
$apps[$x]['destinations'][$y]['name'] = "time_conditions";
$apps[$x]['destinations'][$y]['sql'] = "select dialplan_name as name, dialplan_number as destination, dialplan_description as description from v_dialplans ";
$apps[$x]['destinations'][$y]['where'] = "where domain_uuid = '${domain_uuid}' and app_uuid = '4b821450-926b-175a-af93-a03c441818b1' and dialplan_enabled = 'true' ";
$apps[$x]['destinations'][$y]['where'] = "where domain_uuid = '\${domain_uuid}' and app_uuid = '4b821450-926b-175a-af93-a03c441818b1' and dialplan_enabled = 'true' ";
$apps[$x]['destinations'][$y]['order_by'] = "dialplan_number asc";
$apps[$x]['destinations'][$y]['field']['context'] = "dialplan_context";
$apps[$x]['destinations'][$y]['field']['name'] = "dialplan_name";