diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2015-11-19 08:54:45 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2015-11-19 08:54:45 -0500 |
commit | 814258158f6a453be01c9b7e9bbda8b10309da4e (patch) | |
tree | a49b4220ee46ed2e68396141e11fe7169685e652 | |
parent | bf2d98e3ff354f7724b90f00a1aea3eb4a83690a (diff) | |
download | pfsense-814258158f6a453be01c9b7e9bbda8b10309da4e.zip pfsense-814258158f6a453be01c9b7e9bbda8b10309da4e.tar.gz |
Revised order of input fields in edit form
-rw-r--r-- | src/usr/local/www/system_advanced_sysctl.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/local/www/system_advanced_sysctl.php b/src/usr/local/www/system_advanced_sysctl.php index 6afb3a9..8e44eed 100644 --- a/src/usr/local/www/system_advanced_sysctl.php +++ b/src/usr/local/www/system_advanced_sysctl.php @@ -243,17 +243,17 @@ if ($act != "edit" ): ?> ))->setWidth(4); $section->addInput(new Form_Input( - 'descr', - 'Description', + 'value', + 'Value', 'text', - $pconfig['descr'] + $pconfig['value'] ))->setWidth(4); $section->addInput(new Form_Input( - 'value', - 'Value', + 'descr', + 'Description', 'text', - $pconfig['value'] + $pconfig['descr'] ))->setWidth(4); if (isset($id) && $a_tunable[$id]) { |