diff options
Diffstat (limited to 'config/freeswitch/freeswitch_vars.tmp')
-rw-r--r-- | config/freeswitch/freeswitch_vars.tmp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/freeswitch/freeswitch_vars.tmp b/config/freeswitch/freeswitch_vars.tmp index 00f2caca..5e7a5744 100644 --- a/config/freeswitch/freeswitch_vars.tmp +++ b/config/freeswitch/freeswitch_vars.tmp @@ -38,7 +38,7 @@ require("/usr/local/pkg/freeswitch.inc"); if ($_GET['a'] == "default") { conf_mount_rw(); exec("cp /usr/local/freeswitch/conf.orig/vars.xml /usr/local/freeswitch/conf/vars.xml"); - $savemsg = "vars.xml: Set as Default"; + $savemsg = "Default Restored"; conf_mount_ro(); } @@ -48,7 +48,7 @@ if ($_POST['a'] == "save") { $fd = fopen("/usr/local/freeswitch/conf/vars.xml", "w"); fwrite($fd, $content); fclose($fd); - $savemsg = "Saved text to the vars.xml"; + $savemsg = "Saved"; conf_mount_ro(); } @@ -129,7 +129,7 @@ display_top_tabs(build_menu()); <input type="hidden" name="f" value="<?php echo $_GET['f']; ?>" /> <input type="hidden" name="a" value="save" /> <?php - echo "<input type='button' value='Set as Default' onclick=\"document.location.href='/packages/freeswitch/freeswitch_vars.php?a=default&f=vars.xml';\" />"; + echo "<input type='button' value='Restore Default' onclick=\"document.location.href='/packages/freeswitch/freeswitch_vars.php?a=default&f=vars.xml';\" />"; ?> </td> </tr> |