Index: /modules/branches/2.3/miscdests/module.xml =================================================================== --- /modules/branches/2.3/miscdests/module.xml (revision 3530) +++ /modules/branches/2.3/miscdests/module.xml (revision 3832) @@ -2,9 +2,10 @@ miscdests Misc Destinations - 1.3.3 + 1.3.4 setup Inbound Call Control Allows creating destinations that dial any local number (extensions, feature codes, outside phone numbers) that can be used by other modules (eg, IVR, time conditions) as a call destination. + *1.3.4* destination changed from Dial(Local/nnn@from-internal) to Goto(from-internal,nnn,1), no reason a new channel should be created *1.3.3* Minor formatting changes *1.3.2* Add he_IL translation Index: /modules/branches/2.3/miscdests/functions.inc.php =================================================================== --- /modules/branches/2.3/miscdests/functions.inc.php (revision 1881) +++ /modules/branches/2.3/miscdests/functions.inc.php (revision 3832) @@ -41,5 +41,5 @@ // write out the dialplan details $ext->add($contextname, $miscid, '', new ext_noop('MiscDest: '.$miscdescription)); - $ext->add($contextname, $miscid, '', new ext_dial('Local/'.$miscdialdest.'@from-internal', '')); + $ext->add($contextname, $miscid, '', new ext_goto('from-internal,'.$miscdialdest.',1', '')); }