Changeset 6269
- Timestamp:
- 08/02/08 18:20:58 (4 months ago)
- Files:
-
- modules/branches/2.5/queues/functions.inc.php (modified) (2 diffs)
- modules/branches/2.5/queues/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/queues/functions.inc.php
r6247 r6269 574 574 // We need to strip off all but the first sound file of any compound sound files 575 575 // 576 $agentannounce_id_arr = explode("&", $config['agentannounce_id']);577 576 $results['agentannounce_id'] = $agentannounce_id_arr[0]; 578 577 } else { … … 602 601 $results['context'] = "ivr-".$config['ivr_id']; 603 602 $arr = ivr_get_details($config['ivr_id']); 604 if( isset($arr['announcement ']) && $arr['announcement'] != '') {605 603 if( isset($arr['announcement_id']) && $arr['announcement_id'] != '') { 604 $periodic = recordings_get_file($arr['announcement_id']); 606 605 // We need to strip off all but the first sound file of any compound sound files 607 606 // 608 $periodic_arr = explode("&", $ arr['announcement']);607 $periodic_arr = explode("&", $periodic); 609 608 $results['periodic-announce'] = $periodic_arr[0]; 610 609 } modules/branches/2.5/queues/module.xml
r6249 r6269 2 2 <rawname>queues</rawname> 3 3 <name>Queues</name> 4 <version>2.5.2 </version>4 <version>2.5.2.1</version> 5 5 <type>setup</type> 6 6 <category>Inbound Call Control</category> … … 9 9 </description> 10 10 <changelog> 11 *2.5.2.1* #2070 periodic-announce message not being configured (re #2068 change) 11 12 *2.5.2* #2073 add a Queue hold time CID prepend to report how long the caller has been holding 12 13 *2.5.1* #2068 recordings_id, don't list IVRs with compound messages
