Displaying 1 result from an estimated 1 matches for "parsedi".
Did you mean:
parsed
2006 May 23
3
AGI ?
...## Sets Outbound CallerID ###
$AGI->set_callerid($callerId);
open(LOG, ">>$log") or die("Couldn't open $log\n");
### Log Statement for Troubleshooting ###
#print LOG "(". localtime() .") Got Dialed number: $gDialedNo\n";
### Calls the function parseDialed to seperate the dialed number into
areacode, ###
### prefix, and number and assigns it to the num array ###
my @num = parseDialed($gDialedNo);
if(!@num) {
### Log Statement for Troubleshooting ###
#print LOG "(". localtime() .") ERROR: Number not Valid!\n";...