From 01e8cf920a26ea08039f07ac19c2c79af07f36cb Mon Sep 17 00:00:00 2001 From: konradSC Date: Tue, 1 May 2018 12:22:22 -0400 Subject: [PATCH] Destinations not showing Vacant Tone (#3042) Destinations are showing ringtones instead of vacant tones. --- app/tones/app_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tones/app_config.php b/app/tones/app_config.php index c20de5f0d7..d27b109c51 100644 --- a/app/tones/app_config.php +++ b/app/tones/app_config.php @@ -34,7 +34,7 @@ $apps[$x]['destinations'][$y]['label'] = "tones"; $apps[$x]['destinations'][$y]['name'] = "tones"; $apps[$x]['destinations'][$y]['sql'] = "select var_uuid as uuid, var_name as name, var_value as destination, var_description as description from v_vars"; - $apps[$x]['destinations'][$y]['where'] = "where var_category = 'Ringtones' "; + $apps[$x]['destinations'][$y]['where'] = "where var_category = 'Tones' "; $apps[$x]['destinations'][$y]['order_by'] = "var_name asc"; $apps[$x]['destinations'][$y]['field']['uuid'] = "var_uuid"; $apps[$x]['destinations'][$y]['field']['name'] = "var_name";