diff options
author | Scott Ullrich <sullrich@scott-ullrichs-mac-pro.local> | 2009-02-09 16:26:43 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@scott-ullrichs-mac-pro.local> | 2009-02-09 16:26:43 -0500 |
commit | 8475f580d8bafb43f9c06ebac52d52e6713c51ca (patch) | |
tree | c260d348b481b38ba4727d786457c6c379ebd8e0 /config/snort/snort_rulesets.php | |
parent | f83fcd4a086d44c1e0faeb910e270782e010c8cd (diff) | |
download | pfsense-packages-8475f580d8bafb43f9c06ebac52d52e6713c51ca.tar.gz pfsense-packages-8475f580d8bafb43f9c06ebac52d52e6713c51ca.tar.bz2 pfsense-packages-8475f580d8bafb43f9c06ebac52d52e6713c51ca.zip |
Only output pgtitle once on 2.0
Diffstat (limited to 'config/snort/snort_rulesets.php')
-rw-r--r-- | config/snort/snort_rulesets.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/snort/snort_rulesets.php b/config/snort/snort_rulesets.php index a06ba106..3d2e9ab4 100644 --- a/config/snort/snort_rulesets.php +++ b/config/snort/snort_rulesets.php @@ -64,7 +64,10 @@ include("head.inc"); <body link="#000000" vlink="#000000" alink="#000000"> <?php include("fbegin.inc"); ?> -<p class="pgtitle"><?=$pgtitle?></font></p> +<?php +if(!$pgtitle_output) + echo "<p class=\"pgtitle\"><?=$pgtitle?></p>"; +?> <form action="snort_rulesets.php" method="post" name="iform" id="iform"> <script src="/row_toggle.js" type="text/javascript"></script> |