diff options
author | jim-p <jimp@pfsense.org> | 2010-06-02 10:04:24 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-06-02 10:04:24 -0400 |
commit | 3cceb5d5eb3374cfb8cfec9be6a78a2863b1334d (patch) | |
tree | e9ff159937f18a4d0de0a770562b34203d7b0bfc | |
parent | 02ca24c9d2b71ecf2a77c9e9ce8c467f91c3762c (diff) | |
download | pfsense-3cceb5d5eb3374cfb8cfec9be6a78a2863b1334d.zip pfsense-3cceb5d5eb3374cfb8cfec9be6a78a2863b1334d.tar.gz |
Add status/log links to Firewall rules
-rwxr-xr-x | usr/local/www/firewall_rules.php | 3 | ||||
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/usr/local/www/firewall_rules.php b/usr/local/www/firewall_rules.php index 0edba70..b9888e6 100755 --- a/usr/local/www/firewall_rules.php +++ b/usr/local/www/firewall_rules.php @@ -42,6 +42,9 @@ ##|-PRIV $pgtitle = array("Firewall", "Rules"); +$statusurl = "status_filter_reload.php"; +$logurl = "diag_logs_filter.php"; + require("guiconfig.inc"); require_once("functions.inc"); require_once("filter.inc"); diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index 2baaef0..342b689 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -549,6 +549,9 @@ read_layer7_config(); $l7clist =& get_l7_unique_list(); $pgtitle = array("Firewall","Rules","Edit"); +$statusurl = "status_filter_reload.php"; +$logurl = "diag_logs_filter.php"; + $closehead = false; $page_filename = "firewall_rules_edit.php"; |