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"; }