diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2015-10-16 09:53:57 -0400 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2015-10-16 09:54:23 -0400 |
commit | d7af098fb250bfa7b200c1d2dae893caaa653d45 (patch) | |
tree | c6e95c2caef3848911f94ca6dd774896c118041f /src/usr | |
parent | 9d8f66b9791a2718fca5e9c4625bdf9474b60d36 (diff) | |
download | pfsense-d7af098fb250bfa7b200c1d2dae893caaa653d45.zip pfsense-d7af098fb250bfa7b200c1d2dae893caaa653d45.tar.gz |
Fixed serial speed selector
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/system_advanced_admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/system_advanced_admin.php b/src/usr/local/www/system_advanced_admin.php index 91c7f98..7581805 100644 --- a/src/usr/local/www/system_advanced_admin.php +++ b/src/usr/local/www/system_advanced_admin.php @@ -493,7 +493,7 @@ if (!$g['enableserial_force'] && ($g['platform'] == $g['product_name'] || $g['pl 'serialspeed', 'Serial Speed', $pconfig['serialspeed'], - array(115200, 57600, 38400, 19200, 14400, 9600) + array_combine(array(115200, 57600, 38400, 19200, 14400, 9600), array(115200, 57600, 38400, 19200, 14400, 9600)) ))->setHelp('Allows selection of different speeds for the serial console port.'); $section->addInput(new Form_Select( |