Changeset 4904
- Timestamp:
- 08/19/07 12:30:52 (6 years ago)
- Files:
-
- modules/branches/2.3/core/agi-bin/dialparties.agi (modified) (2 diffs)
- modules/branches/2.3/core/module.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3/core/agi-bin/dialparties.agi
r4902 r4904 559 559 } else { 560 560 if (($rgmethod == "hunt") || ($rgmethod == "memoryhunt") || ($rgmethod == "firstavailable") || ($rgmethod == "firstnotonphone")) { 561 $ds = ' ,';561 $ds = '|'; 562 562 if ($timer) { 563 563 $ds .= $timer; 564 564 } 565 $ds .= ' ,' . $dialopts; // pound to transfer, provide ringing565 $ds .= '|' . $dialopts; // pound to transfer, provide ringing 566 566 $AGI->set_variable('ds',$ds); 567 567 $AGI->set_variable("HuntMembers",$loops); 568 568 $AGI->set_priority(20); // dial command is at priority 20 where dialplan handles calling a ringgroup with strategy of "hunt" or "MemoryHunt" 569 569 } else { 570 $ds .= ' ,';570 $ds .= '|'; 571 571 if ($timer) { 572 572 $ds .= $timer; … … 575 575 } 576 576 } 577 $ds .= ' ,' . $dialopts; // pound to transfer, provide ringing577 $ds .= '|' . $dialopts; // pound to transfer, provide ringing 578 578 if (trim($use_confirmation) != "FALSE") { 579 579 $AGI->set_variable('__RG_IDX',$ringgroup_index); modules/branches/2.3/core/module.xml
r4894 r4904 8 8 <canuninstall>no</canuninstall> 9 9 <changelog> 10 *2.3.0.0* #2295 generate bad-nubmer in core, disable with AMPBADNUMBER=false, #2172 replace | with ,#2299 except dialparties.agi 10 11 *2.3.0RC1.1.2* #2265 remove DeadAGI, #2189 add no-msg dest for vm 11 12 *2.3.0RC1.1.1* #2253 remove default jbenable, jbforce
