Changeset 14120
- Timestamp:
- 05/30/12 07:07:00 (1 year ago)
- Files:
-
- modules/branches/2.10/findmefollow/functions.inc.php (modified) (1 diff)
- modules/branches/2.10/infoservices/install.php (modified) (1 diff)
- modules/branches/2.10/paging/functions.inc.php (modified) (1 diff)
- modules/branches/2.10/paging/install.php (modified) (1 diff)
- modules/branches/2.10/restart/functions.inc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.10/findmefollow/functions.inc.php
r13934 r14120 544 544 // extensions and users. 545 545 // 546 if ( $amp_conf['FOLLOWME_AUTO_CREATE']) {546 if (isset($amp_conf['FOLLOWME_AUTO_CREATE']) && $amp_conf['FOLLOWME_AUTO_CREATE']) { 547 547 function findmefollow_configprocess() { 548 548 global $amp_conf; modules/branches/2.10/infoservices/install.php
r13091 r14120 12 12 13 13 $fcc = new featurecode('infoservices', 'directory'); 14 $fcc->setDescription('Directory'); 15 $fcc->setDefault('#'); 16 $fcc->setProvideDest(); 17 $fcc->update(); 14 if ($fcc->getCode()) { 15 $fcc->delete(); 16 } 18 17 unset($fcc); 19 18 modules/branches/2.10/paging/functions.inc.php
r14059 r14120 12 12 13 13 function paging_get_config($engine) { 14 global $db, $ext, $chan_dahdi, $version, $amp_conf; 15 global $conferences_conf; 14 global $db, $ext, $chan_dahdi, $version, $amp_conf, $conferences_conf; 16 15 switch($engine) { 17 16 case "asterisk": modules/branches/2.10/paging/install.php
r13919 r14120 114 114 $sql = "INSERT INTO paging_autoanswer (useragent, var, setting) VALUES ('Panasonic', 'ALERTINFO', 'Alert-Info: Intercom')"; 115 115 $result = $db->query($sql); 116 $sql = "INSERT INTO paging_autoanswer (useragent, var, setting) VALUES ('Polycom', 'ALERTINFO', 'Alert-Info: info-Auto Answer')"; 117 $result = $db->query($sql); 116 118 117 119 // Add dulex field modules/branches/2.10/restart/functions.inc.php
r13956 r14120 24 24 $core_conf->addSipNotify('polycom-check-cfg',array('Event' => 'check-sync')); 25 25 $core_conf->addSipNotify('sipura-check-cfg',array('Event' => 'resync')); 26 $core_conf->addSipNotify('grandstream-check-cfg',array('Event' => ' sys-control'));26 $core_conf->addSipNotify('grandstream-check-cfg',array('Event' => 'check-sync')); 27 27 $core_conf->addSipNotify('cisco-check-cfg',array('Event' => 'check-sync')); 28 28 $core_conf->addSipNotify('reboot-snom',array('Event' => 'reboot')); … … 33 33 $core_conf->addSipNotify('linksys-warm-restart',array('Event' => 'restart_now')); 34 34 $core_conf->addSipNotify('reboot-yealink',array('Event' => 'check-sync\;reboot=true')); 35 35 $core_conf->addSipNotify('panasonic-check-cfg',array('Event' => 'check-sync')); 36 $core_conf->addSipNotify('audiocodes-check-cfg',array('Event' => 'check-sync')); 37 $core_conf->addSipNotify('algo-check-cfg',array('Event' => 'check-sync')); 38 $core_conf->addSipNotify('cyberdata-check-cfg',array('Event' => 'check-sync')); 39 36 40 } 37 41
