mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fixed #5904
This commit is contained in:
parent
57fd6bd43a
commit
5bf773af03
@ -496,7 +496,8 @@ if ($act=="new" || $act=="edit"):
|
||||
'local_port',
|
||||
'Local port',
|
||||
'number',
|
||||
$pconfig['local_port']
|
||||
$pconfig['local_port'],
|
||||
['min' => '0']
|
||||
))->setHelp('Set this option if you would like to bind to a specific port. Leave this blank or enter 0 for a random dynamic port.');
|
||||
|
||||
$section->addInput(new Form_Input(
|
||||
|
||||
@ -686,7 +686,8 @@ if ($act=="new" || $act=="edit"):
|
||||
'local_port',
|
||||
'Local port',
|
||||
'number',
|
||||
$pconfig['local_port']
|
||||
$pconfig['local_port'],
|
||||
['min' => '0']
|
||||
));
|
||||
|
||||
$section->addInput(new Form_Input(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user