Changeset 6730
- Timestamp:
- 09/15/08 23:30:55 (5 years ago)
- Files:
-
- modules/branches/2.5/core/agi-bin/dialparties.agi (modified) (1 diff)
- modules/branches/2.5/core/functions.inc.php (modified) (2 diffs)
- modules/branches/2.5/queues/functions.inc.php (modified) (1 diff)
- modules/branches/2.5/ringgroups/functions.inc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/core/agi-bin/dialparties.agi
r6596 r6730 55 55 $cwignore = get_var( $AGI, "CWIGNORE" ); 56 56 $cwignore = strtoupper(trim($cwignore)); 57 58 // Clear it now so subsequent transfers don't honor it any longer 59 // 60 if ($cwignore) { 61 $AGI->set_variable('__CWIGNORE',""); 62 } 57 63 $cfignore = get_var( $AGI, "CFIGNORE" ); 58 64 $cfignore = strtoupper(trim($cfignore)); modules/branches/2.5/core/functions.inc.php
r6705 r6730 1408 1408 $exten = 's'; 1409 1409 $ext->add($context, $exten, '', new ext_setvar('__MACRO_RESULT','')); 1410 $ext->add($context, $exten, '', new ext_setvar('__CWIGNORE',''));1411 1410 $ext->add($context, $exten, '', new ext_dbdel('${BLKVM_OVERRIDE}')); 1412 1411 $ext->add($context, $exten, '', new ext_dbdel('RG/${ARG1}/${UNIQCHAN}')); … … 1426 1425 $exten = 's'; 1427 1426 $ext->add($context, $exten, '', new ext_setvar('__MACRO_RESULT','')); 1428 $ext->add($context, $exten, '', new ext_setvar('__CWIGNORE',''));1429 1427 $ext->add($context, $exten, '', new ext_dbdel('${BLKVM_OVERRIDE}')); 1430 1428 modules/branches/2.5/queues/functions.inc.php
r6655 r6730 321 321 // stalling the ACD. 322 322 if ($q['cwignore']) { 323 $ext->add('ext-queues', $exten, '', new ext_setvar('_ CWIGNORE', 'TRUE'));323 $ext->add('ext-queues', $exten, '', new ext_setvar('__CWIGNORE', 'TRUE')); 324 324 } 325 325 $agentannounce_id = (isset($q['agentannounce_id'])?$q['agentannounce_id']:''); modules/branches/2.5/ringgroups/functions.inc.php
r6592 r6730 137 137 } 138 138 if ($cwignore != '') { 139 $ext->add($contextname, $grpnum, '', new ext_setvar('_ CWIGNORE', 'TRUE'));139 $ext->add($contextname, $grpnum, '', new ext_setvar('__CWIGNORE', 'TRUE')); 140 140 } 141 141 if ($cwignore != '') {
