From 9e19a138b4410d06c9e74f20fb6fe3ddd3bdb613 Mon Sep 17 00:00:00 2001 From: Ermal Date: Fri, 5 Aug 2011 07:26:54 +0000 Subject: Silence some command becuase they just spam the logs uselessly. --- config/snort/snort_rules_edit.php | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) (limited to 'config/snort/snort_rules_edit.php') diff --git a/config/snort/snort_rules_edit.php b/config/snort/snort_rules_edit.php index 49356b4e..bac04f68 100644 --- a/config/snort/snort_rules_edit.php +++ b/config/snort/snort_rules_edit.php @@ -79,29 +79,28 @@ $delimiter = "\n"; //split the contents of the string file into an array using the delimiter $splitcontents = explode($delimiter, $contents2); -if($_POST['highlight'] <> "") { - if($_POST['highlight'] == "yes" or - $_POST['highlight'] == "enabled") { - $highlight = "yes"; +if ($_POST) { + if($_POST['highlight'] <> "") { + if($_POST['highlight'] == "yes" or + $_POST['highlight'] == "enabled") { + $highlight = "yes"; + } else { + $highlight = "no"; + } } else { $highlight = "no"; } -} else { - $highlight = "no"; -} -if($_POST['rows'] <> "") - $rows = $_POST['rows']; -else - $rows = 1; + if($_POST['rows'] <> "") + $rows = $_POST['rows']; + else + $rows = 1; -if($_POST['cols'] <> "") - $cols = $_POST['cols']; -else - $cols = 66; + if($_POST['cols'] <> "") + $cols = $_POST['cols']; + else + $cols = 66; -if ($_POST) -{ if ($_POST['save']) { /* get the changes */ @@ -114,7 +113,6 @@ if ($_POST) @file_put_contents($file, implode($delimiter, $splitcontents)); echo ""; - //header("Location: /snort/snort_view_edit.php?id=$id&openruleset=$file&ids=$ids"); exit; } } -- cgit v1.2.3