diff options
author | mcrane <mctch@yahoo.com> | 2009-08-07 16:22:23 -0600 |
---|---|---|
committer | mcrane <mctch@yahoo.com> | 2009-08-07 16:22:23 -0600 |
commit | d62b5e18760e501965463b6914102eb253e0cd8a (patch) | |
tree | 2767bbcefe1640fc6f374b8983fceec48b6878be /config/freeswitch_dev/v_fax.tmp | |
parent | 6eeac714b3bb1f54f3c763369ddc44339a99c805 (diff) | |
download | pfsense-packages-d62b5e18760e501965463b6914102eb253e0cd8a.tar.gz pfsense-packages-d62b5e18760e501965463b6914102eb253e0cd8a.tar.bz2 pfsense-packages-d62b5e18760e501965463b6914102eb253e0cd8a.zip |
FreeSWITCH dev dump the majority of hard coded paths and add a few preferences.
Diffstat (limited to 'config/freeswitch_dev/v_fax.tmp')
-rw-r--r-- | config/freeswitch_dev/v_fax.tmp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/config/freeswitch_dev/v_fax.tmp b/config/freeswitch_dev/v_fax.tmp index 15914ce8..40beb598 100644 --- a/config/freeswitch_dev/v_fax.tmp +++ b/config/freeswitch_dev/v_fax.tmp @@ -31,7 +31,7 @@ require("guiconfig.inc"); require("/usr/local/pkg/v_config.inc"); $a_fax = &$config['installedpackages']['freeswitchfax']['config']; -$dir_fax = '/usr/local/freeswitch/storage/fax/inbox/'; +$dir_fax = $v_storage_dir.'/fax/inbox/'; if ($_GET['act'] == "del") { if ($_GET['type'] == 'fax') { @@ -66,8 +66,8 @@ if ($_GET['act'] == "del") { } } - if (file_exists("/usr/local/freeswitch/conf/dialplan/default/".$order."_".$faxname.".xml")){ - unlink("/usr/local/freeswitch/conf/dialplan/default/".$order."_".$faxname.".xml"); + if (file_exists($v_conf_dir."/dialplan/default/".$order."_".$faxname.".xml")){ + unlink($v_conf_dir."/dialplan/default/".$order."_".$faxname.".xml"); } //remove fax entries @@ -141,7 +141,9 @@ include("head.inc"); <?php include("fbegin.inc"); -echo "<p class=\"pgtitle\">$v_project_label: FAX</p>\n"; +if ($v_label_show) { + echo "<p class=\"pgtitle\">$v_label: FAX</p>\n"; +} ?> <div id="mainlevel"> |