wizard: remove /31 restriction for #6463

This commit is contained in:
Franco Fichtner 2023-04-02 16:45:13 +02:00 committed by GitHub
parent 3066c875a2
commit 866b48028b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -742,9 +742,6 @@ include("head.inc");
echo "<select class='form-control' id='{$name}' name='{$name}'>\n";
$CHECKED = ' selected="selected"';
for ($x = 1; $x <= 32; $x++) {
if ($x == 31) {
continue;
}
if ($value == $x) $CHECKED = " selected=\"selected\"";
echo "<option value='{$x}'";
if ($value == $x || $x == 32) {