aboutsummaryrefslogtreecommitdiffstats
path: root/config/freeswitch_dev
diff options
context:
space:
mode:
authormcrane <mctch@yahoo.com>2009-07-16 00:57:09 -0600
committermcrane <mctch@yahoo.com>2009-07-16 00:57:09 -0600
commit563f4ba4a0420b00f78a47e30f0098947d05af8c (patch)
tree61b2c68a175b379b962cc4a5d1388f94af5f9e5c /config/freeswitch_dev
parent23b1a7de679f1b8626633b643b6566c51274d986 (diff)
downloadpfsense-packages-563f4ba4a0420b00f78a47e30f0098947d05af8c.tar.gz
pfsense-packages-563f4ba4a0420b00f78a47e30f0098947d05af8c.tar.bz2
pfsense-packages-563f4ba4a0420b00f78a47e30f0098947d05af8c.zip
FreeSWITCH dev package fix syntax error on pin number for hunt groups.
Diffstat (limited to 'config/freeswitch_dev')
-rw-r--r--config/freeswitch_dev/freeswitch.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/freeswitch_dev/freeswitch.inc b/config/freeswitch_dev/freeswitch.inc
index aaeb2767..5853324d 100644
--- a/config/freeswitch_dev/freeswitch.inc
+++ b/config/freeswitch_dev/freeswitch.inc
@@ -1173,7 +1173,7 @@ function sync_package_freeswitch_hunt_group()
} //end if strlen huntgroupid; add the Hunt Group to the dialplan
//--- begin: pin number ------------------------------------
- if ($rowhelper['huntgrouppin']) > 0) {
+ if (strlen($rowhelper['huntgrouppin']) > 0) {
echo "var pin = '".$rowhelper['huntgrouppin']."';\n";
echo "if (pin.length > 0) {\n";
echo " var dtmf = new Object();\n";