Changeset 6528
- Timestamp:
- 09/01/08 11:30:52 (5 years ago)
- Files:
-
- modules/branches/2.5/core/agi-bin/dialparties.agi (modified) (3 diffs)
- modules/branches/2.5/core/module.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/core/agi-bin/dialparties.agi
r6521 r6528 305 305 // Now check for DND 306 306 foreach ( $ext as $k ) { 307 if ( (substr($k,-1) =='#') ) {307 if ( (substr($k,-1)!='#') ) { 308 308 // no point in doing if cf is enabled 309 309 $dnd = $AGI->database_get('DND',$k); … … 410 410 // if CF is not in use and $dndprimary is not set otherwise $extnum has been cleared and nothing to do 411 411 // 412 if ( (substr($k,-1) =='#') && $dndprimary == 0) {412 if ( (substr($k,-1)!='#') && $dndprimary == 0) { 413 413 // CW is not in use or CFB is in use on this extension, then we need to check! 414 414 if ( ($exthascw == 0) || ($exthascfb == 1) || ($exthascfu == 1) ) { … … 493 493 } 494 494 // Update Caller ID for calltrace application 495 if ((substr($k,-1) =='#') && (($rgmethod != "hunt") && ($rgmethod != "memoryhunt") && ($rgmethod != "firstavailable") && ($rgmethod != "firstnotonphone")) ) {495 if ((substr($k,-1)!='#') && (($rgmethod != "hunt") && ($rgmethod != "memoryhunt") && ($rgmethod != "firstavailable") && ($rgmethod != "firstnotonphone")) ) { 496 496 if ( isset($cidnum) && is_numeric($cidnum) ) { 497 497 $rc = $AGI->database_put('CALLTRACE', $k, $cidnum); modules/branches/2.5/core/module.xml
r6522 r6528 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2.5.0rc2. 3</version>6 <version>2.5.0rc2.4</version> 7 7 <candisable>no</candisable> 8 8 <canuninstall>no</canuninstall> 9 9 <changelog> 10 *2.5.0rc2.4* #3140 fixed typo introduced in dialparties.agi 10 11 *2.5.0rc2.3* #3130, #2750, #3128, #3131 (requires r6519) added master recording disable (can be performance booster) 11 12 *2.5.0rc2.2* lots of changed to be updated
