diff options
author | jim-p <jimp@pfsense.org> | 2014-11-05 17:29:44 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-11-05 17:29:44 -0500 |
commit | 8fcc2a00607cf9e2f86b5bd109d98be1fd463b05 (patch) | |
tree | b219d31ca71a1dc4a303c0cdd016e34820482d27 | |
parent | 4b8c644048e50e150d42b6646734197d74ca3157 (diff) | |
download | pfsense-packages-8fcc2a00607cf9e2f86b5bd109d98be1fd463b05.tar.gz pfsense-packages-8fcc2a00607cf9e2f86b5bd109d98be1fd463b05.tar.bz2 pfsense-packages-8fcc2a00607cf9e2f86b5bd109d98be1fd463b05.zip |
Fix typo
-rwxr-xr-x | config/snort/snort_preprocessors.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/snort/snort_preprocessors.php b/config/snort/snort_preprocessors.php index cb2af543..75e4902d 100755 --- a/config/snort/snort_preprocessors.php +++ b/config/snort/snort_preprocessors.php @@ -255,7 +255,7 @@ if ($_GET['act'] == "import" && isset($_GET['varname']) && !empty($_GET['varvalu // Handle deleting of any of the multiple configuration engines if ($_POST['del_http_inspect']) { - if (isset($_POST['eng_id']) && isset($id) && issset($a_nat[$id])) { + if (isset($_POST['eng_id']) && isset($id) && isset($a_nat[$id])) { unset($a_nat[$id]['http_inspect_engine']['item'][$_POST['eng_id']]); write_config("Snort pkg: deleted http_inspect engine for {$a_nat[$id]['interface']}."); header("Location: snort_preprocessors.php?id=$id#httpinspect_row"); |