diff options
author | Renato Botelho <garga@pfSense.org> | 2014-02-22 07:34:35 -0300 |
---|---|---|
committer | Renato Botelho <garga@pfSense.org> | 2014-02-22 07:34:35 -0300 |
commit | f19865fb9b7461fd6f41d198177122e9256500db (patch) | |
tree | a2d89c2aa839a7941babaa818a75e88ef16574d4 | |
parent | 16560541ddb1477ac86c207b7e64259c80219e3c (diff) | |
parent | 0abcaed0af51b255a10f29a4583c76f3a598e24f (diff) | |
download | pfsense-packages-f19865fb9b7461fd6f41d198177122e9256500db.tar.gz pfsense-packages-f19865fb9b7461fd6f41d198177122e9256500db.tar.bz2 pfsense-packages-f19865fb9b7461fd6f41d198177122e9256500db.zip |
Merge pull request #602 from bmeeks8/master
Fix copy-paste typo in system function name call introduced during cleanup.
-rw-r--r-- | config/suricata/suricata_interfaces_edit.php | 2 | ||||
-rw-r--r-- | config/suricata/suricata_logs_browser.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/suricata/suricata_interfaces_edit.php b/config/suricata/suricata_interfaces_edit.php index 74344072..5f644a55 100644 --- a/config/suricata/suricata_interfaces_edit.php +++ b/config/suricata/suricata_interfaces_edit.php @@ -263,7 +263,7 @@ if ($_POST["Submit"]) { $natent['libhtp_policy']['item'][] = $default; // Enable the basic default rules for the interface - $natent['rulesets'] = "decoder-events.rules||files.rules||http-events.rules||smtp-events.rules||stream-events"; + $natent['rulesets'] = "decoder-events.rules||files.rules||http-events.rules||smtp-events.rules||stream-events.rules"; // Adding a new interface, so set flag to build new rules $rebuild_rules = true; diff --git a/config/suricata/suricata_logs_browser.php b/config/suricata/suricata_logs_browser.php index ab16a350..38310b9f 100644 --- a/config/suricata/suricata_logs_browser.php +++ b/config/suricata/suricata_logs_browser.php @@ -148,7 +148,7 @@ if ($input_errors) { $selected = ""; if ($id == $instanceid) $selected = "selected"; - echo "<option value='{$id}' {$selected}> (" . convert_friendly_interface_to_friendly_descre($instance['interface']) . "){$instance['descr']}</option>\n"; + echo "<option value='{$id}' {$selected}> (" . convert_friendly_interface_to_friendly_descr($instance['interface']) . "){$instance['descr']}</option>\n"; } ?> </select> <?php echo gettext('Choose which instance logs you want to view.'); ?> |