Changeset 12397
- Timestamp:
- 08/10/11 18:25:23 (2 years ago)
- Files:
-
- freepbx/branches/2.9 (modified) (1 prop)
- freepbx/branches/2.9/amp_conf/agi-bin/phpagi.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.9
- Property svnmerge-integrated changed from /freepbx/trunk:1-11116,12060,12212-12221,12224 /freepbx/branches/2.8:1-11479,12035 to /freepbx/branches/2.8:1-11479,12035 /freepbx/trunk:1-11116,12060,12212-12221,12224,12396
freepbx/branches/2.9/amp_conf/agi-bin/phpagi.php
r10865 r12397 335 335 function exec($application, $options) 336 336 { 337 if(is_array($options)) $options = join(' |', $options);337 if(is_array($options)) $options = join(',', $options); 338 338 return $this->evaluate("EXEC $application $options"); 339 339 } … … 852 852 function exec_dial($type, $identifier, $timeout=NULL, $options=NULL, $url=NULL) 853 853 { 854 return $this->exec('Dial', trim("$type/$identifier |$timeout|$options|$url", '|'));854 return $this->exec('Dial', trim("$type/$identifier,$timeout,$options,$url", ',')); 855 855 } 856 856 … … 868 868 function exec_goto($a, $b=NULL, $c=NULL) 869 869 { 870 return $this->exec('Goto', trim("$a |$b|$c", '|'));870 return $this->exec('Goto', trim("$a,$b,$c", ',')); 871 871 } 872 872
