Changeset 8100
- Timestamp:
- 08/23/09 18:20:12 (4 years ago)
- Files:
-
- modules/branches/2.6/findmefollow/functions.inc.php (modified) (1 diff)
- modules/branches/2.6/findmefollow/module.xml (modified) (1 diff)
- modules/branches/2.6/ivr/functions.inc.php (modified) (1 diff)
- modules/branches/2.6/ivr/module.xml (modified) (2 diffs)
- modules/branches/2.6/voicemail/functions.inc.php (modified) (2 diffs)
- modules/branches/2.6/voicemail/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.6/findmefollow/functions.inc.php
r7623 r8100 316 316 // 317 317 $changed=0; 318 if (!isset($results['pre_ring'])) { 319 $results['pre_ring'] = ''; 320 } 321 if (!isset($results['grptime'])) { 322 $results['grptime'] = ''; 323 } 324 if (!isset($results['grplist'])) { 325 $results['grplist'] = ''; 326 } 327 if (!isset($results['needsconf'])) { 328 $results['needsconf'] = ''; 329 } 318 330 if (($astdb_prering != $results['pre_ring']) && ($astdb_prering >= 0)) { 319 331 $results['pre_ring'] = $astdb_prering; modules/branches/2.6/findmefollow/module.xml
r7933 r8100 2 2 <rawname>findmefollow</rawname> 3 3 <name>Follow Me</name> 4 <version>2.6.0. 0</version>4 <version>2.6.0.1</version> 5 5 <publisher>FreePBX</publisher> 6 6 <license>GPLv2+</license> 7 7 <changelog> 8 *2.6.0.1* #3780 8 9 *2.6.0.0* localizations, misc 9 10 *2.5.1.7* #3274, localization string enclosures modules/branches/2.6/ivr/functions.inc.php
r6945 r8100 409 409 $dest = $post[$post[$var].$match[1]]; 410 410 $cmd = $post['option'.$match[1]]; 411 $ivr_ret = $post['ivr_ret'.$match[1]];411 $ivr_ret = isset($post['ivr_ret'.$match[1]]) ? $post['ivr_ret'.$match[1]] : ''; 412 412 // Debugging if it all goes pear shaped. 413 413 // print "I think pushing $cmd does $dest<br>\n"; modules/branches/2.6/ivr/module.xml
r7961 r8100 2 2 <rawname>ivr</rawname> 3 3 <name>IVR</name> 4 <version>2.6.0. 1</version>4 <version>2.6.0.2</version> 5 5 <publisher>FreePBX</publisher> 6 6 <license>GPLv2+</license> … … 11 11 </description> 12 12 <changelog> 13 *2.6.0.2* #3780 13 14 *2.6.0.1* #3732 14 15 *2.6.0.0* #3384, add hook support modules/branches/2.6/voicemail/functions.inc.php
r7770 r8100 798 798 $vmxobj->setMenuOpt("",0,'busy'); 799 799 } else { 800 if (!isset($vmx_option_0_number)) { 801 $vmx_option_0_number = ''; 802 } 800 803 $vmx_option_0_number = preg_replace("/[^0-9]/" ,"", $vmx_option_0_number); 801 804 $vmxobj->setMenuOpt($vmx_option_0_number,0,'unavail'); … … 803 806 } 804 807 805 if ( $vmx_state) {808 if (isset($vmx_state) && $vmx_state) { 806 809 807 810 if (isset($vmx_unavail_enabled) && $vmx_unavail_enabled != '') { modules/branches/2.6/voicemail/module.xml
r7955 r8100 2 2 <rawname>voicemail</rawname> 3 3 <name>Voicemail</name> 4 <version>2.6.0. 0</version>4 <version>2.6.0.1</version> 5 5 <publisher>FreePBX</publisher> 6 6 <license>GPLv2+</license> … … 8 8 <canuninstall>no</canuninstall> 9 9 <changelog> 10 *2.6.0.1* #3780 10 11 *2.6.0.0* #1957, localizations, misc 11 12 *2.5.1.7* #3698
