Increase the number used in the ring group destination delay and timeout.

This commit is contained in:
FusionPBX
2022-01-14 10:35:06 -07:00
committed by GitHub
parent 2a74114cf2
commit 0a8c6f01fb

View File

@@ -772,7 +772,7 @@
echo " <td class='formfld'>\n";
echo " <select name='ring_group_destinations[".$x."][destination_delay]' class='formfld' style='width:55px'>\n";
$i=0;
while ($i <= 300) {
while ($i <= 999) {
if ($i == $row['destination_delay']) {
echo " <option value='$i' selected='selected'>$i</option>\n";
}
@@ -786,7 +786,7 @@
echo " <td class='formfld'>\n";
echo " <select name='ring_group_destinations[".$x."][destination_timeout]' class='formfld' style='width:55px'>\n";
$i = 5;
while($i <= 300) {
while($i <= 999) {
if ($i == $row['destination_timeout']) {
echo " <option value='$i' selected='selected'>$i</option>\n";
}