Extended and looped devicelines cause of DECT stations which can handle more then 48 lines (#4279)

This commit is contained in:
ednt 2019-06-14 16:16:01 +02:00 committed by FusionPBX
parent 3655eb0616
commit c34faf2e7c
1 changed files with 1 additions and 1 deletions

View File

@ -1040,7 +1040,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 <=48; $n++) {
for ($n = 1; $n <=99; $n++) {
echo " <option value='".escape($n)."'>".escape($n)."</option>\n";
}
echo " </select>\n";