Changeset 6269

Show
Ignore:
Timestamp:
08/02/08 20:20:58 (4 years ago)
Author:
p_lindheimer
Message:

closes #2070 periodic-announce message not being configured (re #2068 change)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.5/queues/functions.inc.php

    r6247 r6269  
    574574    // We need to strip off all but the first sound file of any compound sound files 
    575575    // 
    576     $agentannounce_id_arr        = explode("&", $config['agentannounce_id']); 
    577576    $results['agentannounce_id'] = $agentannounce_id_arr[0]; 
    578577  } else { 
     
    602601      $results['context'] = "ivr-".$config['ivr_id']; 
    603602      $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']); 
    606605        // We need to strip off all but the first sound file of any compound sound files 
    607606        // 
    608         $periodic_arr = explode("&", $arr['announcement']); 
     607        $periodic_arr = explode("&", $periodic); 
    609608        $results['periodic-announce'] = $periodic_arr[0]; 
    610609      } 
  • modules/branches/2.5/queues/module.xml

    r6249 r6269  
    22  <rawname>queues</rawname> 
    33  <name>Queues</name> 
    4   <version>2.5.2</version> 
     4  <version>2.5.2.1</version> 
    55  <type>setup</type> 
    66  <category>Inbound Call Control</category> 
     
    99  </description> 
    1010  <changelog> 
     11    *2.5.2.1* #2070 periodic-announce message not being configured (re #2068 change) 
    1112    *2.5.2* #2073 add a Queue hold time CID prepend to report how long the caller has been holding 
    1213    *2.5.1* #2068 recordings_id, don't list IVRs with compound messages