Ring groups not working correctly after upgrading modules

in the file macro-dial.php in core/functions.inc

Replace this

//$ext->add($c,$s,'', new ext_gotoif('$[$[$["foo${RingGroupMethod}" != "foofirstavailable"] & $["foo${RingGroupMethod}" != "foofirstnotonphone"]] | $["foo${DialStatus}" = "fooBUSY"]]', 'a46'));
//$ext->add($c,$s,'', new ext_set('HuntMembers', (string) '0')); // String zeros.

with this

$ext->add($c,$s,'', new ext_gotoif('$[$["${RingGroupMethod}" = "firstavailable"] | $["${RingGroupMethod}" = "firstnotonphone"]] & $[$["${DIALSTATUS}" != "CHANUNAVAIL"] & $["${DIALSTATUS}" != "CONGESTION"]]', 'huntreset', 'a46'));
$ext->add($c,$s,'huntreset', new ext_set('HuntMembers', (string) '1')); // String zeros.

Then reload. Then check

1 Like