diff options
author | Ermal <eri@pfsense.org> | 2012-11-16 21:27:57 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2012-11-16 21:29:06 +0000 |
commit | 66f445c3bc27304d2a02d0d0bc9f1064c415c745 (patch) | |
tree | daebca8cdf3ed8a639a9857783ed53e995c1c81a /usr | |
parent | b3f1ef1614bc715acaceb5a29cb62608f20be5c0 (diff) | |
download | pfsense-66f445c3bc27304d2a02d0d0bc9f1064c415c745.zip pfsense-66f445c3bc27304d2a02d0d0bc9f1064c415c745.tar.gz |
To allow limiters to work correctly on mutliwan for now enforce selecting a gateway on outgoing
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index 85a098d..aeab4e7 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -385,6 +385,8 @@ if ($_POST) { $input_errors[] = gettext("You cannot select one queue and one virtual interface for IN and Out. both must be from the same type."); else if ($dnpipe[0] == "?" && $pdnpipe[0] <> "?") $input_errors[] = gettext("You cannot select one queue and one virtual interface for IN and Out. both must be from the same type."); + if ($_POST['direction'] == "out" && empty($_POST['gateway'])) + $input_errors[] = gettext("Please select a gateway, normaly the interface selected gateway, so the limiters work correctly"); } if( !empty($_POST['ruleid']) && !ctype_digit($_POST['ruleid'])) $input_errors[] = gettext('ID must be an integer'); |