Changeset 10672
- Timestamp:
- 12/09/10 15:34:08 (2 years ago)
- Files:
-
- modules/branches/2.8/iaxsettings/module.xml (modified) (2 diffs)
- modules/branches/2.8/iaxsettings/page.iaxsettings.php (modified) (1 diff)
- modules/branches/2.8/sipsettings/module.xml (modified) (2 diffs)
- modules/branches/2.8/sipsettings/page.sipsettings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.8/iaxsettings/module.xml
r9705 r10672 2 2 <rawname>iaxsettings</rawname> 3 3 <name>Asterisk IAX Settings</name> 4 <version>2.7.0. 2</version>4 <version>2.7.0.3</version> 5 5 <publisher>Bandwidth.com</publisher> 6 6 <license>AGPLv3</license> … … 14 14 </description> 15 15 <changelog> 16 *2.7.0.3* #4681 16 17 *2.7.0.2* #4216 17 18 *2.7.0.1* localizations modules/branches/2.8/iaxsettings/page.iaxsettings.php
r9671 r10672 578 578 foreach ($custom_files as $file) { 579 579 if (file_exists($file)) { 580 $iax_conf = parse_ini_file($file,true);580 $iax_conf = @parse_ini_file($file,true); 581 581 $main = true; // 1 is iax.conf, after that don't care 582 582 foreach ($iax_conf as $section => $item) { modules/branches/2.8/sipsettings/module.xml
r10072 r10672 2 2 <rawname>sipsettings</rawname> 3 3 <name>Asterisk SIP Settings</name> 4 <version>2.8.0. 0</version>4 <version>2.8.0.1</version> 5 5 <publisher>Bandwidth.com</publisher> 6 6 <license>AGPLv3</license> … … 14 14 </description> 15 15 <changelog> 16 *2.8.0.1* #4681 16 17 *2.8.0.0* published 2.8 version 17 18 *2.7.0.1* localizations modules/branches/2.8/sipsettings/page.sipsettings.php
r8792 r10672 971 971 foreach ($custom_files as $file) { 972 972 if (file_exists($file)) { 973 $sip_conf = parse_ini_file($file,true);973 $sip_conf = @parse_ini_file($file,true); 974 974 $main = true; // 1 is sip.conf, after that don't care 975 975 foreach ($sip_conf as $section => $item) {
