Allow editing 48 lines on extension_edit page (#3472)

When provisioning 48 port analog gateway, (Grandstream GXW4248 for example) need ability to configure up to 48 lines per device.
This commit is contained in:
emaktech 2018-09-14 01:53:19 -04:00 committed by FusionPBX
parent 97fd49362b
commit e57839783b
1 changed files with 1 additions and 1 deletions

View File

@ -997,7 +997,7 @@
echo " <td class='vtable'>";
echo " <select id='line_number' name='devices[0][line_number]' class='formfld' style='width: auto;' onchange=\"".escape($onchange)."\">\n";
echo " <option value=''></option>\n";
for ($n = 1; $n <=30; $n++) {
for ($n = 1; $n <=48; $n++) {
echo " <option value='".escape($n)."'>".escape($n)."</option>\n";
}
echo " </select>\n";