diff --git a/ispconfig3_wblist/ispconfig3_wblist.php b/ispconfig3_wblist/ispconfig3_wblist.php index b2b3d4b..7227032 100644 --- a/ispconfig3_wblist/ispconfig3_wblist.php +++ b/ispconfig3_wblist/ispconfig3_wblist.php @@ -263,7 +263,10 @@ function gen_form($attrib) $field_id = 'wblistpriority'; $input_wblistpriority = new html_select(['name' => '_' . $field_id, 'id' => $field_id]); - $input_wblistpriority->add(['1', '2', '3', '4', '5', '6', '7', '8', '9', '10']); + $input_wblistpriority->add( + ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'], + ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'] + ); $table->add('title', html::label($field_id, rcube::Q($this->gettext('wblistpriority')))); $table->add('', $input_wblistpriority->show($wblist[0]['priority'] ?? ''));