aboutsummaryrefslogtreecommitdiffstats
path: root/config/freeswitch/freeswitch_ivr_options_edit.tmp
diff options
context:
space:
mode:
Diffstat (limited to 'config/freeswitch/freeswitch_ivr_options_edit.tmp')
-rw-r--r--config/freeswitch/freeswitch_ivr_options_edit.tmp7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/freeswitch/freeswitch_ivr_options_edit.tmp b/config/freeswitch/freeswitch_ivr_options_edit.tmp
index 8f925813..55f2985f 100644
--- a/config/freeswitch/freeswitch_ivr_options_edit.tmp
+++ b/config/freeswitch/freeswitch_ivr_options_edit.tmp
@@ -171,7 +171,12 @@ display_top_tabs(build_menu());
<?php
echo " <select name='optionprofile' class='formfld'>\n";
echo " <option></option>\n";
-
+ if (htmlspecialchars($pconfig['optionprofile']) == "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);