aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbmeeks8 <bmeeks8@bellsouth.net>2014-04-15 11:39:26 -0400
committerErmal <eri@pfsense.org>2014-04-28 08:03:38 +0000
commit62ed7e16bc69b27de9d37f8f9bbeaed3a1fb42a0 (patch)
treecd50084f06ed0cfc16438e21579ddb3af1e65ad1
parentadd3781434e14f909e05cfe9bbe68624f6b633a6 (diff)
downloadpfsense-packages-62ed7e16bc69b27de9d37f8f9bbeaed3a1fb42a0.tar.gz
pfsense-packages-62ed7e16bc69b27de9d37f8f9bbeaed3a1fb42a0.tar.bz2
pfsense-packages-62ed7e16bc69b27de9d37f8f9bbeaed3a1fb42a0.zip
Add missing ']' to variable name.
-rw-r--r--config/snort/snort_edit_hat_data.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/snort/snort_edit_hat_data.php b/config/snort/snort_edit_hat_data.php
index e067dc11..a5ec0aad 100644
--- a/config/snort/snort_edit_hat_data.php
+++ b/config/snort/snort_edit_hat_data.php
@@ -66,7 +66,7 @@ else
if ($_POST['clear']) {
unset($a_nat[$id]['host_attribute_data']);
$a_nat[$id]['host_attribute_table'] = 'off';
- write_config("Snort pkg: cleared Host Attribute Table data for {$a_nat[$id]['interface'}.");
+ write_config("Snort pkg: cleared Host Attribute Table data for {$a_nat[$id]['interface']}.");
$rebuild_rules = false;
snort_generate_conf($a_nat[$id]);
$pconfig['host_attribute_data'] = "";
@@ -78,7 +78,7 @@ if ($_POST['save']) {
$a_nat[$id]['host_attribute_table'] = 'on';
else
$a_nat[$id]['host_attribute_table'] = 'off';
- write_config("Snort pkg: modified Host Attribute Table data for {$a_nat[$id]['interface'}.");
+ write_config("Snort pkg: modified Host Attribute Table data for {$a_nat[$id]['interface']}.");
$rebuild_rules = false;
snort_generate_conf($a_nat[$id]);
$pconfig['host_attribute_data'] = $_POST['host_attribute_data'];