Changeset 5594

Show
Ignore:
Timestamp:
01/14/08 17:59:31 (5 years ago)
Author:
p_lindheimer
Message:

#2627 setting ringing in queues is ignored

Files:

Legend:

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

    r5404 r5594  
    303303  $alertinfo     = isset($alertinfo) ? $alertinfo:''; 
    304304  $joinannounce  = strtolower($joinannounce) != 'none' ? $joinannounce:''; 
    305   $ringing       = isset($rtone) ? $rtone:''; 
     305  $ringing       = isset($_REQUEST['rtone']) ? $_REQUEST['rtone']:''; 
    306306  $agentannounce = strtolower($agentannounce) != 'none' ? $agentannounce:''; 
    307307  $maxwait       = isset($maxwait) ? $maxwait:''; 
  • modules/branches/2.4/queues/module.xml

    r5557 r5594  
    22  <rawname>queues</rawname> 
    33  <name>Queues</name> 
    4   <version>2.4.0.2</version> 
     4  <version>2.4.0.3</version> 
    55  <type>setup</type> 
    66  <category>Inbound Call Control</category> 
     
    99  </description> 
    1010  <changelog> 
    11     *2.4.0.3* #2579 added strict to joinempty and leavewhenempy 
     11    *2.4.0.3* #2579 added strict to joinempty and leavewhenempy, #2627 ringing box ignored 
    1212    *2.4.0.2* #2528 add context = 'ext-queues' when getting destination statement 
    1313    *2.4.0.1* added out() and outn() to install script 
  • modules/branches/2.4/queues/page.queues.php

    r5556 r5594  
    2727$maxwait = isset($_REQUEST['maxwait'])?$_REQUEST['maxwait']:''; 
    2828$cwignore = isset($_REQUEST['cwignore'])?$_REQUEST['cwignore']:'0'; 
     29$rtone = isset($_REQUEST['rtone'])?$_REQUEST['rtone']:'0'; 
    2930 
    3031if (isset($_REQUEST['goto0']) && isset($_REQUEST[$_REQUEST['goto0']."0"])) {