Correct input type to 'text' for RADIUS shared secret used by wireless hostap interfaces. Fixes #6067

This commit is contained in:
jim-p 2016-04-04 09:47:27 -04:00
parent 3cd510c543
commit 3f8cea5eff

View File

@ -3078,7 +3078,7 @@ if (isset($wancfg['wireless'])) {
$group->add(new Form_Input(
'auth_server_shared_secret',
'Shared Secret',
'number',
'text',
$pconfig['auth_server_shared_secret']
))->setHelp('RADIUS Shared secret for this firewall');
@ -3102,7 +3102,7 @@ if (isset($wancfg['wireless'])) {
$group->add(new Form_Input(
'auth_server_shared_secret2',
'Shared Secret',
'number',
'text',
$pconfig['auth_server_shared_secret2']
))->setHelp('RADIUS Shared secret for this firewall');