mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-03 10:23:50 +00:00
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:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user