diff options
author | Ermal <eri@pfsense.org> | 2010-08-10 21:14:05 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2010-08-10 21:14:05 +0000 |
commit | fd9ba7c09f01aaa1ae50bc15e918c05b024f4f36 (patch) | |
tree | 75b741fc8022ec6d38664f24f0295ed552c3a9da | |
parent | 79b7f49845b0b7efebd9fbc1cbb84456d6a47b93 (diff) | |
download | pfsense-fd9ba7c09f01aaa1ae50bc15e918c05b024f4f36.zip pfsense-fd9ba7c09f01aaa1ae50bc15e918c05b024f4f36.tar.gz |
Fixes #817. Tags/Marks can be used even outside floating rules.
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index 26ce56a..d722c01 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -413,11 +413,11 @@ if ($_POST) { } } + if (isset($_POST['tag'])) + $filterent['tag'] = $_POST['tag']; + if (isset($_POST['tagged'])) + $filterent['tagged'] = $_POST['tagged']; if ($if == "FloatingRules" || isset($_POST['floating'])) { - if (isset($_POST['tag'])) - $filterent['tag'] = $_POST['tag']; - if (isset($_POST['tagged'])) - $filterent['tagged'] = $_POST['tagged']; $filterent['direction'] = $_POST['direction']; if (isset($_POST['quick']) && $_POST['quick'] <> "") $filterent['quick'] = $_POST['quick']; |