From 66d7e5dd7520aa5152b77ed2454c2187f1e534a2 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 16 Aug 2013 23:32:44 +0000 Subject: [PATCH] Minor modification to Ring Groups interface increased the delay and timeout seconds in the select list. --- app/ring_groups/ring_group_edit.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app/ring_groups/ring_group_edit.php b/app/ring_groups/ring_group_edit.php index ddeaf785ea..f506380b47 100644 --- a/app/ring_groups/ring_group_edit.php +++ b/app/ring_groups/ring_group_edit.php @@ -72,18 +72,23 @@ else { //define the destination_select function function destination_select($select_name, $select_value, $select_default) { if (strlen($select_value) == 0) { $select_value = $select_default; } - echo " \n"; echo " \n"; $i = 0; - while($i <= 100) { + while($i <= 300) { if ($select_value == $i) { echo " \n"; } else { echo " \n"; } - $i = $i + 5; + if ($i < 90) { + $i = $i + 5; + } + else { + $i = $i + 30; + } } echo "\n"; }