I realize a ticket had been taken on this issue (but closed before the actual "fix" was implemented) and that 1.2 is in a "freeze" configuration for release pending any real show stoppers but thought I would "flag" this item so it does not drop through the crack :)
The "fix" for the snort Rules display in the GUI file /usr/local/www/snort_rules.php is as follows:
function go()
{
var agt=navigator.userAgent.toLowerCase();
if (agt.indexOf("msie") != -1) {
box = document.forms.selectbox;}
else
{box = document.forms[1].selectbox;}
destination = box.options[box.selectedIndex].value;
if (destination) location.href = destination;
}
The above takes into account the differences in IE and the rest of the world to allow the snort rules to be displayed properly in most of the web browsers in use.
Just thought I would mention it… :)
gm...