Changeset 8469
- Timestamp:
- 01/04/10 18:24:11 (3 years ago)
- Files:
-
- modules/branches/2.6/core/functions.inc.php (modified) (2 diffs)
- modules/branches/2.6/core/page.routing.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.6/core/functions.inc.php
r8467 r8469 1515 1515 $outrts = sql($sql,"getAll",DB_FETCHMODE_ASSOC); 1516 1516 $ext->addInclude('from-internal-additional','outbound-allroutes'); 1517 $ext->add('outbound-allroutes', ' _!', '', new ext_macro('user-callerid,SKIPTTL'));1517 $ext->add('outbound-allroutes', 'foo', '', new ext_noop('bar')); 1518 1518 foreach($outrts as $outrt) { 1519 1519 $ext->addInclude('outbound-allroutes',$outrt['application']); … … 1538 1538 // destinations. 1539 1539 // 1540 // Then do one call to user-callerid and record-enable instead of each time as in the past 1541 // 1542 $ext->add($outrt['application'], $exten['extension'], '', new ext_macro('user-callerid,SKIPTTL')); 1540 1543 $ext->add($outrt['application'], $exten['extension'], '', new ext_setvar("_NODEST","")); 1541 1544 $ext->add($outrt['application'], $exten['extension'], '', new ext_macro('record-enable,${AMPUSER},OUT')); modules/branches/2.6/core/page.routing.php
r8391 r8469 367 367 <strong>.</strong> <?php echo _("wildcard, matches one or more characters")?> <br> 368 368 <strong>|</strong> <?php echo _("separates a dialing prefix from the number (for example, 9|NXXXXXX would match when some dialed \"95551234\" but would only pass \"5551234\" to the trunks)")?> 369 <br/><strong>/</strong> <?php echo _("appended to a dial pattern, matches a callerid or callerid pattern (for example, NXXXXXX/104 would match only if dialed by extension \"104\")")?>370 369 </span></a> 371 370 </td>
