Changeset 8836
- Timestamp:
- 02/16/10 14:31:34 (3 years ago)
- Files:
-
- modules/branches/2.7/queues/module.xml (modified) (2 diffs)
- modules/branches/2.7/queues/page.queues.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.7/queues/module.xml
r8812 r8836 2 2 <rawname>queues</rawname> 3 3 <name>Queues</name> 4 <version>2.7.0beta1. 2</version>4 <version>2.7.0beta1.3</version> 5 5 <publisher>FreePBX</publisher> 6 6 <license>GPLv2+</license> … … 11 11 </description> 12 12 <changelog> 13 *2.7.0beta1.3* #4048 13 14 *2.7.0beta1.2* #4038 14 15 *2.7.0beta1.1* #2085 modules/branches/2.7/queues/page.queues.php
r8811 r8836 489 489 <span> 490 490 <b><?php echo _("ringall")?></b>: <?php echo _("ring all available agents until one answers (default)")?><br> 491 <?php 492 $ast_ge_16=true; 493 if (!$ast_ge_16) { 494 ?> 491 495 <b><?php echo _("roundrobin")?></b>: <?php echo _("take turns ringing each available agent")?><br> 496 <?php 497 } 498 ?> 492 499 <b><?php echo _("leastrecent")?></b>: <?php echo _("ring agent which was least recently called by this queue")?><br> 493 500 <b><?php echo _("fewestcalls")?></b>: <?php echo _("ring the agent with fewest completed calls from this queue")?><br> … … 513 520 $items[] = 'linear'; 514 521 $items[] = 'wrandom'; 522 unset($items[array_search('roundrobin',$items)]); 515 523 } 516 524 foreach ($items as $item) {
