diff options
author | mcrane <mctch@yahoo.com> | 2009-08-09 02:51:59 -0600 |
---|---|---|
committer | mcrane <mctch@yahoo.com> | 2009-08-09 02:51:59 -0600 |
commit | de5a95ce1b00cd27adff950bfae4b497e3b22467 (patch) | |
tree | f69e44680699c9b9fb3d182ed4b3cf42c655bcf5 /config | |
parent | 080286701812fd5f0599d6532777e2928ce7325c (diff) | |
download | pfsense-packages-de5a95ce1b00cd27adff950bfae4b497e3b22467.tar.gz pfsense-packages-de5a95ce1b00cd27adff950bfae4b497e3b22467.tar.bz2 pfsense-packages-de5a95ce1b00cd27adff950bfae4b497e3b22467.zip |
FreeSWITCH dev package fix menu path, and change label from ivr to auto attendant.
Diffstat (limited to 'config')
-rw-r--r-- | config/freeswitch_dev/freeswitch.xml | 2 | ||||
-rw-r--r-- | config/freeswitch_dev/v_auto_attendant.tmp | 2 | ||||
-rw-r--r-- | config/freeswitch_dev/v_auto_attendant_edit.tmp | 2 | ||||
-rw-r--r-- | config/freeswitch_dev/v_auto_attendant_options_edit.tmp | 2 | ||||
-rw-r--r-- | config/freeswitch_dev/v_config.inc | 5 |
5 files changed, 8 insertions, 5 deletions
diff --git a/config/freeswitch_dev/freeswitch.xml b/config/freeswitch_dev/freeswitch.xml index d3ed72c8..e26968a0 100644 --- a/config/freeswitch_dev/freeswitch.xml +++ b/config/freeswitch_dev/freeswitch.xml @@ -44,7 +44,7 @@ <requirements>Describe your package requirements here</requirements> <faq>Currently there are no FAQ items provided.</faq> <name>Settings</name> - <version>0.9.7.14</version> + <version>0.9.7.15</version> <title>Settings</title> <include_file>/usr/local/pkg/v_config.inc</include_file> <menu> diff --git a/config/freeswitch_dev/v_auto_attendant.tmp b/config/freeswitch_dev/v_auto_attendant.tmp index ee769819..31b5aeb7 100644 --- a/config/freeswitch_dev/v_auto_attendant.tmp +++ b/config/freeswitch_dev/v_auto_attendant.tmp @@ -56,7 +56,7 @@ include("head.inc"); <?php include("fbegin.inc"); if ($v_label_show) { - echo "<p class=\"pgtitle\">$v_label: IVR</p>\n"; + echo "<p class=\"pgtitle\">$v_label: Auto Attendant</p>\n"; } ?> diff --git a/config/freeswitch_dev/v_auto_attendant_edit.tmp b/config/freeswitch_dev/v_auto_attendant_edit.tmp index 6826a896..227957de 100644 --- a/config/freeswitch_dev/v_auto_attendant_edit.tmp +++ b/config/freeswitch_dev/v_auto_attendant_edit.tmp @@ -223,7 +223,7 @@ function sf() { document.forms[0].savetopath.focus(); } include("fbegin.inc"); if ($v_label_show) { - echo "<p class=\"pgtitle\">$v_label: IVR: Edit</p>\n"; + echo "<p class=\"pgtitle\">$v_label: Auto Attendant: Edit</p>\n"; } if ($input_errors) print_input_errors($input_errors); diff --git a/config/freeswitch_dev/v_auto_attendant_options_edit.tmp b/config/freeswitch_dev/v_auto_attendant_options_edit.tmp index 7be21e6b..d91a077b 100644 --- a/config/freeswitch_dev/v_auto_attendant_options_edit.tmp +++ b/config/freeswitch_dev/v_auto_attendant_options_edit.tmp @@ -109,7 +109,7 @@ include("head.inc"); <?php include("fbegin.inc"); if ($v_label_show) { - echo "<p class=\"pgtitle\">$v_label: Options: Edit</p>\n"; + echo "<p class=\"pgtitle\">$v_label: Auto Attendant: Options: Edit</p>\n"; } if ($input_errors) print_input_errors($input_errors); diff --git a/config/freeswitch_dev/v_config.inc b/config/freeswitch_dev/v_config.inc index 45974def..836e5cdd 100644 --- a/config/freeswitch_dev/v_config.inc +++ b/config/freeswitch_dev/v_config.inc @@ -52,7 +52,7 @@ function v_settings() $config['installedpackages']['freeswitchsettings']['config'][0]['tmp_dir'] = '/tmp'; $config['installedpackages']['freeswitchsettings']['config'][0]['bin_dir'] = '/usr/local/bin'; $config['installedpackages']['freeswitchsettings']['config'][0]['v_startup_script_dir'] = '/usr/local/etc/rc.d'; - $config['installedpackages']['freeswitchsettings']['config'][0]['v_package_version'] = "0.9.7.14"; + $config['installedpackages']['freeswitchsettings']['config'][0]['v_package_version'] = "0.9.7.15"; $config['installedpackages']['freeswitchsettings']['config'][0]['v_build_version'] = "1.0.4"; $config['installedpackages']['freeswitchsettings']['config'][0]['v_build_revision'] = "Release"; $config['installedpackages']['freeswitchsettings']['config'][0]['v_label'] = 'FreeSWITCH'; //FreeSWITCH (TM) http://www.freeswitch.org/ @@ -78,6 +78,9 @@ function v_settings() function build_menu() { + global $config; + $v_relative_url = $config['installedpackages']['freeswitchsettings']['config'][0]['v_relative_url']; + //$script_name_array = split ("/", $_SERVER["SCRIPT_NAME"]); //$script_name = $script_name_array[count($script_name_array)-1]; //echo "script_name: ".$script_name."<br />"; |