Changeset 4901

Show
Ignore:
Timestamp:
08/19/07 02:33:52 (6 years ago)
Author:
p_lindheimer
Message:

#2172 replace deprecated use of | with ,

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.3/announcement/functions.inc.php

    r4767 r4901  
    4040          } 
    4141        } else { 
    42           $ext->add('app-announcement-'.$row[0], 's', '', new ext_playback($row[2].'|noanswer')); 
     42          $ext->add('app-announcement-'.$row[0], 's', '', new ext_playback($row[2].',noanswer')); 
    4343        } 
    4444 
  • modules/branches/2.3/cidlookup/functions.inc.php

    r2552 r4901  
    123123          if ($item['cidlookup_id'] != 0) { 
    124124            if ($item['cache'] == 1 && $item['sourcetype'] != 'internal') { 
    125               $ext->add('cidlookup', 'cidlookup_'.$item['cidlookup_id'], '', new ext_gotoif('$[${DB_EXISTS(cidname/${CALLERID(num)})} = 1]', 'cidlookup|cidlookup_return|1')); 
     125              $ext->add('cidlookup', 'cidlookup_'.$item['cidlookup_id'], '', new ext_gotoif('$[${DB_EXISTS(cidname/${CALLERID(num)})} = 1]', 'cidlookup,cidlookup_return,1')); 
    126126            } 
    127127          } 
  • modules/branches/2.3/disa/functions.inc.php

    r2206 r4901  
    5757           
    5858          if ($nopass) { 
    59             $ext->add('disa', $item['disa_id'], '', new ext_disa('no-password|'.$item['context'])); 
     59            $ext->add('disa', $item['disa_id'], '', new ext_disa('no-password,'.$item['context'])); 
    6060          } else { 
    6161            $ext->add('disa', $item['disa_id'], '', new ext_playback('enter-password')); 
  • modules/branches/2.3/pinsets/functions.inc.php

    r4600 r4901  
    9292                  // If there are any wildcards in there, add a _ to the start 
    9393                  if (preg_match("/\.|z|x|\[|\]/i", $extension)) { $extension = "_".$extension; } 
    94                   $ext->splice($context, $extension, 0, new ext_macro('pinsets', $thisitem['pinsets_id'].'|'.$thisitem['addtocdr'])); 
     94                  $ext->splice($context, $extension, 0, new ext_macro('pinsets', $thisitem['pinsets_id'].','.$thisitem['addtocdr'])); 
    9595                }            
    9696                 
  • modules/branches/2.3/queues/functions.inc.php

    r4896 r4901  
    152152    legacy_extensions_add($addarray); 
    153153  } 
    154   $addarray = array('ext-queues',$account,'5','Queue',$account.'|t||'.$agentannounce.'|'.$maxwait,$name,'0'); 
     154  $addarray = array('ext-queues',$account,'5','Queue',$account.',t,,'.$agentannounce.','.$maxwait,$name,'0'); 
    155155  legacy_extensions_add($addarray); 
    156156  $addarray = array('ext-queues',$account.'*','1','Macro','agent-add,'.$account.','.$password,'','0');