Changeset 13460 for modules

Show
Ignore:
Timestamp:
02/16/12 22:37:39 (1 year ago)
Author:
p_lindheimer
Message:

closes #5263 allow a ringgroup to be up to 300 seconds

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.10/ringgroups/page.ringgroups.php

    r13091 r13460  
    239239      <tr> 
    240240        <td> 
    241           <a href=# class="info"><?php echo _("Ring Time (max 60 sec)")?> 
     241          <a href=# class="info"><?php echo _("Ring Time (max 300 sec)")?> 
    242242            <span> 
    243243              <?php echo _("Time in seconds that the phones will ring. For all hunt style ring strategies, this is the time for each iteration of phone(s) that are rung")?> 
     
    500500  var msgInvalidExtList = "<?php echo _('Please enter an extension list.'); ?>"; 
    501501  var msgInvalidTime = "<?php echo _('Invalid time specified'); ?>"; 
    502   var msgInvalidGrpTimeRange = "<?php echo _('Time must be between 1 and 60 seconds'); ?>"; 
     502  var msgInvalidGrpTimeRange = "<?php echo _('Time must be between 1 and 300 seconds'); ?>"; 
    503503  var msgInvalidDescription = "<?php echo _('Please enter a valid Group Description'); ?>"; 
    504504  var msgInvalidRingStrategy = "<?php echo _('Only ringall, ringallv2, hunt and the respective -prim versions are supported when confirmation is checked'); ?>"; 
     
    532532  } else { 
    533533    var grptimeVal = theForm.grptime.value; 
    534     if (grptimeVal < 1 || grptimeVal > 60) 
     534    if (grptimeVal < 1 || grptimeVal > 300) 
    535535      return warnInvalid(theForm.grptime, msgInvalidGrpTimeRange); 
    536536  }