aboutsummaryrefslogtreecommitdiffstats
path: root/config/snort/snort_interfaces_edit.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2011-11-11 10:03:42 +0000
committerErmal <eri@pfsense.org>2011-11-11 10:45:15 +0000
commit216b9bb43657b4c15376603698bcccf34ecb102c (patch)
treee68cdcf3b0e359cd8257c334d3e8c96f621c7e70 /config/snort/snort_interfaces_edit.php
parentce90c719bf0f56e673577fae522fffdc7b1481c9 (diff)
downloadpfsense-packages-216b9bb43657b4c15376603698bcccf34ecb102c.tar.gz
pfsense-packages-216b9bb43657b4c15376603698bcccf34ecb102c.tar.bz2
pfsense-packages-216b9bb43657b4c15376603698bcccf34ecb102c.zip
Get rid of the stop/start button on interface edit is useless.
Diffstat (limited to 'config/snort/snort_interfaces_edit.php')
-rw-r--r--config/snort/snort_interfaces_edit.php32
1 files changed, 1 insertions, 31 deletions
diff --git a/config/snort/snort_interfaces_edit.php b/config/snort/snort_interfaces_edit.php
index c843a3f7..77f6cea7 100644
--- a/config/snort/snort_interfaces_edit.php
+++ b/config/snort/snort_interfaces_edit.php
@@ -295,7 +295,7 @@ if (isset($_GET['dup']))
header( 'Cache-Control: no-store, no-cache, must-revalidate' );
header( 'Cache-Control: post-check=0, pre-check=0', false );
header( 'Pragma: no-cache' );
- header("Location: /snort/snort_interfaces_edit.php?id=$id");
+ header("Location: /snort/snort_interfaces.php");
exit;
}
@@ -317,35 +317,6 @@ if (isset($_GET['dup']))
exit;
}
- if ($_POST["Submit3"])
- {
-
- Running_Stop($snort_uuid, $if_real, $id);
-
- header( 'Expires: Sat, 26 Jul 1997 05:00:00 GMT' );
- header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
- header( 'Cache-Control: no-store, no-cache, must-revalidate' );
- header( 'Cache-Control: post-check=0, pre-check=0', false );
- header( 'Pragma: no-cache' );
- header("Location: /snort/snort_interfaces_edit.php?id=$id");
- exit;
-
- }
-
- /* This code needs to be below headers */
- if (isset($config['installedpackages']['snortglobal']['rule'][$id]['interface']))
- {
-
- $snort_up_ck2_info = Running_Ck($snort_uuid, $if_real, $id);
-
- if ($snort_up_ck2_info == 'no')
- $snort_up_ck = '<input name="Submit2" type="submit" class="formbtn" value="Start" onClick="enable_change(true)">';
- else
- $snort_up_ck = '<input name="Submit3" type="submit" class="formbtn" value="Stop" onClick="enable_change(true)">';
- } else
- $snort_up_ck = '';
-
-
$pgtitle = "Snort: Interface Edit: $id $snort_uuid $if_real";
include_once("head.inc");
@@ -694,7 +665,6 @@ function enable_change(enable_change) {
<tr>
<td width="22%" valign="top"></td>
<td width="78%"><input name="Submit" type="submit" class="formbtn" value="Save">
- <?php echo $snort_up_ck; ?>
<?php if (isset($id) && $a_nat[$id]): ?>
<input name="id" type="hidden" value="<?=$id;?>">
<?php endif; ?></td>