Changeset 8836

Show
Ignore:
Timestamp:
02/16/10 14:31:34 (3 years ago)
Author:
p_lindheimer
Message:

closes #4048 remove roundrobin from ring strategies in 1.6+

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.7/queues/module.xml

    r8812 r8836  
    22  <rawname>queues</rawname> 
    33  <name>Queues</name> 
    4   <version>2.7.0beta1.2</version> 
     4  <version>2.7.0beta1.3</version> 
    55  <publisher>FreePBX</publisher> 
    66  <license>GPLv2+</license> 
     
    1111  </description> 
    1212  <changelog> 
     13    *2.7.0beta1.3* #4048 
    1314    *2.7.0beta1.2* #4038 
    1415    *2.7.0beta1.1* #2085 
  • modules/branches/2.7/queues/page.queues.php

    r8811 r8836  
    489489        <span> 
    490490          <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?> 
    491495          <b><?php echo _("roundrobin")?></b>: <?php echo _("take turns ringing each available agent")?><br> 
     496<?php 
     497        } 
     498?> 
    492499          <b><?php echo _("leastrecent")?></b>: <?php echo _("ring agent which was least recently called by this queue")?><br> 
    493500          <b><?php echo _("fewestcalls")?></b>: <?php echo _("ring the agent with fewest completed calls from this queue")?><br> 
     
    513520          $items[] = 'linear'; 
    514521          $items[] = 'wrandom'; 
     522          unset($items[array_search('roundrobin',$items)]); 
    515523        } 
    516524        foreach ($items as $item) {