mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fixed 5124 and #5125 (Default values)
This commit is contained in:
parent
c71c434b63
commit
6d5e25ce11
@ -3063,7 +3063,7 @@ if (isset($wancfg['wireless'])) {
|
||||
$section->addInput(new Form_Select(
|
||||
'wpa_mode',
|
||||
'WPA mode',
|
||||
$pconfig['wpa_mode'],
|
||||
(isset($pconfig['wpa_mode'])) ? $pconfig['wpa_mode']: '2',
|
||||
['1' => 'WPA', '2' => 'WPA2', '3' => 'Both']
|
||||
));
|
||||
|
||||
@ -3084,7 +3084,7 @@ if (isset($wancfg['wireless'])) {
|
||||
$section->addInput(new Form_Select(
|
||||
'wpa_pairwise',
|
||||
'WPA Pairwise',
|
||||
$pconfig['wpa_pairwise'],
|
||||
(isset($pconfig['wpa_pairwise'])) ? $pconfig['wpa_pairwise']:'CCMP',
|
||||
['CCMP TKIP' => 'Both', 'CCMP' => 'AES (recommended)', 'TKIP' => 'TKIP']
|
||||
));
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user