Changeset 4917
- Timestamp:
- 08/21/07 00:59:04 (6 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.3/amp_conf/htdocs/admin/functions.inc.php
r4874 r4917 50 50 'CWINUSEBUSY' => array('bool' , true), 51 51 'FOPRUN' => array('bool' , true), 52 'AMPBADNUMBER' => array('bool' , true), 52 53 'DEVEL' => array('bool' , false), 53 54 'DEVELRELOAD' => array('bool' , false), … … 634 635 } elseif (preg_match('/Asterisk SVN-branch-(\d+(\.\d+)*)-r(-?(\S*))/', $verinfo, $matches)) { 635 636 return array('engine'=>'asterisk', 'version' => $matches[1].'.'.$matches[4], 'additional' => $matches[4]); 637 } elseif (preg_match('/Asterisk SVN-trunk-r(-?(\S*))/', $verinfo, $matches)) { 638 return array('engine'=>'asterisk', 'version' => '1.6', 'additional' => $matches[1]); 636 639 } 637 640
