Changeset 5594
- Timestamp:
- 01/14/08 17:59:31 (5 years ago)
- Files:
-
- modules/branches/2.4/queues/functions.inc.php (modified) (1 diff)
- modules/branches/2.4/queues/module.xml (modified) (2 diffs)
- modules/branches/2.4/queues/page.queues.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4/queues/functions.inc.php
r5404 r5594 303 303 $alertinfo = isset($alertinfo) ? $alertinfo:''; 304 304 $joinannounce = strtolower($joinannounce) != 'none' ? $joinannounce:''; 305 $ringing = isset($ rtone) ? $rtone:'';305 $ringing = isset($_REQUEST['rtone']) ? $_REQUEST['rtone']:''; 306 306 $agentannounce = strtolower($agentannounce) != 'none' ? $agentannounce:''; 307 307 $maxwait = isset($maxwait) ? $maxwait:''; modules/branches/2.4/queues/module.xml
r5557 r5594 2 2 <rawname>queues</rawname> 3 3 <name>Queues</name> 4 <version>2.4.0. 2</version>4 <version>2.4.0.3</version> 5 5 <type>setup</type> 6 6 <category>Inbound Call Control</category> … … 9 9 </description> 10 10 <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 12 12 *2.4.0.2* #2528 add context = 'ext-queues' when getting destination statement 13 13 *2.4.0.1* added out() and outn() to install script modules/branches/2.4/queues/page.queues.php
r5556 r5594 27 27 $maxwait = isset($_REQUEST['maxwait'])?$_REQUEST['maxwait']:''; 28 28 $cwignore = isset($_REQUEST['cwignore'])?$_REQUEST['cwignore']:'0'; 29 $rtone = isset($_REQUEST['rtone'])?$_REQUEST['rtone']:'0'; 29 30 30 31 if (isset($_REQUEST['goto0']) && isset($_REQUEST[$_REQUEST['goto0']."0"])) {
