diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2014-12-08 14:44:30 -0500 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2014-12-15 12:15:48 -0500 |
commit | 625a2136f876acd1671dd34d79744b7ddffaf616 (patch) | |
tree | 5d9487863c476af5fb45b8bcb048fd26837f1f85 /config/suricata/suricata_ip_reputation.php | |
parent | 477886371b45c363d02727afce409a03a99d516a (diff) | |
download | pfsense-packages-625a2136f876acd1671dd34d79744b7ddffaf616.tar.gz pfsense-packages-625a2136f876acd1671dd34d79744b7ddffaf616.tar.bz2 pfsense-packages-625a2136f876acd1671dd34d79744b7ddffaf616.zip |
Disable IP REPUTATION when platform is NanoBSD.
Diffstat (limited to 'config/suricata/suricata_ip_reputation.php')
-rw-r--r-- | config/suricata/suricata_ip_reputation.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/suricata/suricata_ip_reputation.php b/config/suricata/suricata_ip_reputation.php index d1e67dad..3e02d484 100644 --- a/config/suricata/suricata_ip_reputation.php +++ b/config/suricata/suricata_ip_reputation.php @@ -195,6 +195,7 @@ if ($savemsg) <?php endif; ?> <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tbody> <tr> <td> <?php @@ -232,6 +233,11 @@ if ($savemsg) <td><div id="mainarea"> <table id="maintable" class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0"> <tbody> + <?php if ($g['platform'] == "nanobsd") : ?> + <tr> + <td colspan="2" class="listtopic"><?php echo gettext("IP Reputation is not supported on NanoBSD installs"); ?></td> + </tr> + <?php else: ?> <tr> <td colspan="2" valign="top" class="listtopic"><?php echo gettext("IP Reputation Configuration"); ?></td> </tr> @@ -371,11 +377,13 @@ if ($savemsg) </table> </td> </tr> + <?php endif; ?> </tbody> </table> </div> </td> </tr> + </tbody> </table> <script type="text/javascript"> |