From 0063c2c580ddb72f0459ffda17396d405358490b Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Thu, 1 Nov 2007 18:04:25 +0000 Subject: The first line in the function reads: "box = document.forms[1].selectbox;" Microsoft's javascript system interprets that to say: "box = document.forms.1.selectbox;" which, of course, does not exist on the document being displayed in the browser - this means you can not select the Category for the Rules to view or edit. The "fix" is to remove the [1] in the line so IE-7 and cousins will interpret the line correctly - If this "breaks" other, well mannered browsers then you need to include code in the javascript function to determine "what" browser is performing the action and adjust the variable assignment accordingly .... Ticket #1483 --- packages/snort/snort_rules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages') diff --git a/packages/snort/snort_rules.php b/packages/snort/snort_rules.php index f1b3ba0f..acad85f8 100644 --- a/packages/snort/snort_rules.php +++ b/packages/snort/snort_rules.php @@ -273,7 +273,7 @@ include("head.inc");