Escape the $ in the domain_uuid variable.

This commit is contained in:
markjcrane
2015-08-05 18:17:39 -05:00
parent 9110c877e7
commit 752c54d05c
13 changed files with 13 additions and 13 deletions

View File

@@ -25,7 +25,7 @@
$apps[$x]['destinations'][$y]['type'] = "sql";
$apps[$x]['destinations'][$y]['label'] = "ring_groups";
$apps[$x]['destinations'][$y]['name'] = "ring_groups";
$apps[$x]['destinations'][$y]['where'] = "where domain_uuid = '${domain_uuid}' and ring_group_enabled = 'true' ";
$apps[$x]['destinations'][$y]['where'] = "where domain_uuid = '\${domain_uuid}' and ring_group_enabled = 'true' ";
$apps[$x]['destinations'][$y]['order_by'] = "ring_group_extension asc";
$apps[$x]['destinations'][$y]['field']['name'] = "ring_group_name";
$apps[$x]['destinations'][$y]['field']['destination'] = "ring_group_extension";