Changeset 13460 for modules/branches
- Timestamp:
- 02/16/12 22:37:39 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.10/ringgroups/page.ringgroups.php
r13091 r13460 239 239 <tr> 240 240 <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)")?> 242 242 <span> 243 243 <?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")?> … … 500 500 var msgInvalidExtList = "<?php echo _('Please enter an extension list.'); ?>"; 501 501 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'); ?>"; 503 503 var msgInvalidDescription = "<?php echo _('Please enter a valid Group Description'); ?>"; 504 504 var msgInvalidRingStrategy = "<?php echo _('Only ringall, ringallv2, hunt and the respective -prim versions are supported when confirmation is checked'); ?>"; … … 532 532 } else { 533 533 var grptimeVal = theForm.grptime.value; 534 if (grptimeVal < 1 || grptimeVal > 60)534 if (grptimeVal < 1 || grptimeVal > 300) 535 535 return warnInvalid(theForm.grptime, msgInvalidGrpTimeRange); 536 536 }
