Changeset 3240
- Timestamp:
- 11/28/06 18:43:50 (6 years ago)
- Files:
-
- modules/branches/2.2/ringgroups/module.xml (modified) (2 diffs)
- modules/branches/2.2/ringgroups/page.ringgroups.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.2/ringgroups/module.xml
r3234 r3240 2 2 <rawname>ringgroups</rawname> 3 3 <name>Ring Groups</name> 4 <version>2.2. 7</version>4 <version>2.2.8</version> 5 5 <type>setup</type> 6 6 <category>Inbound Call Control</category> … … 9 9 </description> 10 10 <changelog> 11 *2.2.8* Allow ringall-prim as well as ringall for strategies with confirmation (#1408) 11 12 *2.2.7* Add tool tip for Group Description (#1459) 12 13 *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 341 341 var msgInvalidGrpTimeRange = "<?php echo _('Time must be between 1 and 60 seconds'); ?>"; 342 342 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'); ?>"; 344 344 345 345 // set up the Destination stuff … … 374 374 } 375 375 376 if (theForm.needsconf.checked && theForm.strategy.value != "ringall") {376 if (theForm.needsconf.checked && theForm.strategy.value.substring(0,7) != "ringall") { 377 377 return warnInvalid(theForm.needsconf, msgInvalidRingStrategy); 378 378 }
