|
Hi all,
I have recentlly installes a elastix 1.6.7 with freePBX 2.5.2-2rc and asterisk 1.4.33.1, and i have found and error on the devstate function.
The problem is that this function on this asterisk is called device_state and not devstate. I solve this problem changeing this code:
$DEVSTATE = version_compare($version, "1.6", "ge") ? "DEVICE_STATE" : "DEVSTATE";
by:
$DEVSTATE = version_compare($version, "1.6", "le") ? "DEVICE_STATE" : "DEVSTATE";
on this files:
/var/www/html/admin/modules/findmefollow/functions.inc.php
/var/www/html/admin/modules/donotdisturb/functions.inc.php
/var/www/html/admin/modules/daynight/functions.inc.php:
Anybody knows something about that?
Thanks
|