aboutsummaryrefslogtreecommitdiffstats
path: root/packages/snort/snort_rulesets.php
diff options
context:
space:
mode:
Diffstat (limited to 'packages/snort/snort_rulesets.php')
-rw-r--r--packages/snort/snort_rulesets.php17
1 files changed, 5 insertions, 12 deletions
diff --git a/packages/snort/snort_rulesets.php b/packages/snort/snort_rulesets.php
index 4b22e8a3..a84fafc2 100644
--- a/packages/snort/snort_rulesets.php
+++ b/packages/snort/snort_rulesets.php
@@ -90,30 +90,23 @@ include("head.inc");
<?php
$dir = "/usr/local/etc/snort/rules/";
$dh = opendir($dir);
- while (false !== ($filename = readdir($dh))) {
+ while (false !== ($filename = readdir($dh)))
$files[] = $filename;
- }
sort($files);
foreach($files as $file) {
if(!stristr($file, ".rules"))
continue;
echo "<tr>";
- echo "<td><center>";
- if(in_array($file, $enabled_rulesets_array)) {
+ if(in_array($file, $enabled_rulesets_array))
$CHECKED = " CHECKED";
- } else {
+ else
$CHECKED = "";
- }
- echo " <input type='checkbox' name='toenable[]' value='$file' {$CHECKED}>";
- echo "</center></td>";
- echo "<td>";
- echo "{$file}";
- echo "</td>";
+ echo "<td align=\"center\" valign=\"top\"><input type='checkbox' name='toenable[]' value='$file'{$CHECKED}></td>";
+ echo "<td>{$file}</td>";
//echo "<td>";
//echo "description";
//echo "</td>";
}
-
?>
</table>
</td>