mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-02-05 15:39:24 +00:00
Added support for tier 0. If using tiers then tier 1 will not ring until Tier Rule Wait Second expires. This effectively leaves queue callers on hold unnecessarily. Using tier 0 as the lowest tier fixes this (but may also break other things [untested, just a wag]).
This commit is contained in:
@@ -595,7 +595,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
echo " </td>\n";
|
||||
echo " <td class='vtable' style='text-align: center;'>\n";
|
||||
echo " <select class='formfld' name='tier_level'>\n";
|
||||
for ($t = 1; $t <= 9; $t++) {
|
||||
for ($t = 0; $t <= 9; $t++) {
|
||||
echo " <option value='".$t."'>".$t."</option>\n";
|
||||
}
|
||||
echo " </select>\n";
|
||||
@@ -931,4 +931,4 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
echo "</div>";
|
||||
|
||||
require_once "resources/footer.php";
|
||||
?>
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user