Chang device key line number from 12 to 99

This commit is contained in:
FusionPBX 2022-10-03 10:40:23 -06:00 committed by GitHub
parent 93dd8bda71
commit b16265458e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1581,7 +1581,7 @@
echo "<td valign='top' align='left' nowrap='nowrap'>\n";
echo " <select class='formfld' name='device_keys[".$x."][device_key_line]'>\n";
echo " <option value=''></option>\n";
for ($l = 0; $l <= 12; $l++) {
for ($l = 0; $l <= 99; $l++) {
echo " <option value='".$l."' ".(($row['device_key_line'] == $l) ? "selected='selected'" : null).">".$l."</option>\n";
}
echo " </select>\n";