Changeset 8391
- Timestamp:
- 09/15/09 18:59:46 (2 years ago)
- Files:
-
- freepbx/trunk/amp_conf/htdocs/admin/common/script.legacy.js (modified) (1 diff)
- modules/branches/2.6/core/page.routing.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/common/script.legacy.js
r7521 r8391 626 626 627 627 function isDialpatternChar (c) 628 { return ( ((c >= "0") && (c <= "9")) || (c == "[") || (c == "]") || (c == "-") || (c == "+") || (c == ".") || (c == "|") || (c == "Z" || c == "z") || (c == "X" || c == "x") || (c == "N" || c == "n") || (c == "*") || (c == "#" ) || (c == "_") || (c == "!") )628 { return ( ((c >= "0") && (c <= "9")) || (c == "[") || (c == "]") || (c == "-") || (c == "+") || (c == ".") || (c == "|") || (c == "Z" || c == "z") || (c == "X" || c == "x") || (c == "N" || c == "n") || (c == "*") || (c == "#" ) || (c == "_") || (c == "!") || (c == "/") ) 629 629 } 630 630 modules/branches/2.6/core/page.routing.php
r7731 r8391 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\")")?> 369 370 </span></a> 370 371 </td>
