Changeset 3240

Show
Ignore:
Timestamp:
11/28/06 18:43:50 (6 years ago)
Author:
p_lindheimer
Message:

#1408 Allow ringall-prim as well as ringall for strategies with confirmation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.2/ringgroups/module.xml

    r3234 r3240  
    22  <rawname>ringgroups</rawname> 
    33  <name>Ring Groups</name> 
    4   <version>2.2.7</version> 
     4  <version>2.2.8</version> 
    55  <type>setup</type> 
    66  <category>Inbound Call Control</category> 
     
    99  </description> 
    1010  <changelog> 
     11    *2.2.8* Allow ringall-prim as well as ringall for strategies with confirmation (#1408) 
    1112    *2.2.7* Add tool tip for Group Description (#1459) 
    1213    *2.2.6* Add NODEST so that destination (often vm) is not taken if called from queue or ringgroup and such is honored for childeren 
  • modules/branches/2.2/ringgroups/page.ringgroups.php

    r3233 r3240  
    341341  var msgInvalidGrpTimeRange = "<?php echo _('Time must be between 1 and 60 seconds'); ?>"; 
    342342  var msgInvalidDescription = "<?php echo _('Please enter a valid Group Description'); ?>"; 
    343   var msgInvalidRingStrategy = "<?php echo _('You must choose ringall ring strategy when using Confirm Calls'); ?>"; 
     343  var msgInvalidRingStrategy = "<?php echo _('You must choose ringall or ringall-prim ring strategy when using Confirm Calls'); ?>"; 
    344344 
    345345  // set up the Destination stuff 
     
    374374  } 
    375375 
    376   if (theForm.needsconf.checked && theForm.strategy.value != "ringall") { 
     376  if (theForm.needsconf.checked && theForm.strategy.value.substring(0,7) != "ringall") { 
    377377    return warnInvalid(theForm.needsconf, msgInvalidRingStrategy); 
    378378  }