aboutsummaryrefslogtreecommitdiffstats
path: root/config/freeswitch/freeswitch_hunt_group_destinations_edit.tmp
diff options
context:
space:
mode:
authormcrane <mctch@yahoo.com>2009-06-11 05:17:40 -0600
committermcrane <mctch@yahoo.com>2009-06-11 05:20:55 -0600
commit865026edf1341db5a266b3cf7fbc41f3ee64e8f1 (patch)
tree1289bdfe5e10638ecdc3215e7a3496649d2eefc1 /config/freeswitch/freeswitch_hunt_group_destinations_edit.tmp
parent02ab82c94263ac68edc72b1ecb057c1f2c63ac79 (diff)
downloadpfsense-packages-865026edf1341db5a266b3cf7fbc41f3ee64e8f1.tar.gz
pfsense-packages-865026edf1341db5a266b3cf7fbc41f3ee64e8f1.tar.bz2
pfsense-packages-865026edf1341db5a266b3cf7fbc41f3ee64e8f1.zip
FreeSWITCH package add d for default option to IVR which is the option that is performed if dtmf doesn't match any option. Extensive testing and fixed a few minor issues with the IVR, auto profile for use with extensions in the IVR and hunt group the auto profile searches all profiles to find the profile the extension is registered to.
Diffstat (limited to 'config/freeswitch/freeswitch_hunt_group_destinations_edit.tmp')
-rw-r--r--config/freeswitch/freeswitch_hunt_group_destinations_edit.tmp7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/freeswitch/freeswitch_hunt_group_destinations_edit.tmp b/config/freeswitch/freeswitch_hunt_group_destinations_edit.tmp
index aa4117fa..1c8ea4ed 100644
--- a/config/freeswitch/freeswitch_hunt_group_destinations_edit.tmp
+++ b/config/freeswitch/freeswitch_hunt_group_destinations_edit.tmp
@@ -177,7 +177,12 @@ display_top_tabs(build_menu());
<?php
echo " <select name='destinationprofile' class='formfld'>\n";
echo " <option></option>\n";
-
+ if (htmlspecialchars($pconfig['destinationprofile']) == "auto") {
+ echo " <option selected='yes'>auto</option>\n";
+ }
+ else {
+ echo " <option>auto</option>\n";
+ }
foreach (ListFiles('/usr/local/freeswitch/conf/sip_profiles') as $key=>$sip_profile_file){
$sip_profile_name = str_replace(".xml", "", $sip_profile_file);