diff options
author | Chris Buechler <cmb@pfsense.org> | 2016-07-15 18:27:48 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2016-07-15 18:28:08 -0500 |
commit | 4e0f1a1e9c17b50a4d7c4ce6d8ff1acf19eb3d9c (patch) | |
tree | 148aa3ce0c63aa4ad2266c45e9910b814ce0ff39 | |
parent | cbf5f75ef643e13bd395010c4b54934425130180 (diff) | |
download | pfsense-4e0f1a1e9c17b50a4d7c4ce6d8ff1acf19eb3d9c.zip pfsense-4e0f1a1e9c17b50a4d7c4ce6d8ff1acf19eb3d9c.tar.gz |
fix typo
-rw-r--r-- | src/usr/local/www/pkg_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/pkg_edit.php b/src/usr/local/www/pkg_edit.php index e5ef0c1..c9631bc 100644 --- a/src/usr/local/www/pkg_edit.php +++ b/src/usr/local/www/pkg_edit.php @@ -1421,7 +1421,7 @@ foreach ($pkg['fields']['field'] as $pkga) { $fieldname = $rowhelper['fieldname']; $fielddescr = $rowhelper['fielddescr']; - // If input validation failed, read the value from the POST data so that hte user's input is not lost + // If input validation failed, read the value from the POST data so that the user's input is not lost if ($get_from_post && isset($_POST[$fieldname.$rowcounter])) { $value = $_POST[$fieldname.$rowcounter]; } elseif (isset($id) && $a_pkg[$id]) { |