diff options
author | Ermal Luçi <eri@pfsense.org> | 2008-01-18 17:51:50 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2008-01-18 17:51:50 +0000 |
commit | 4633edc26dec188220a19bb03dc4e188e16acbab (patch) | |
tree | 667e0f12ace2e4c452650c4976c59dfd63143e96 /usr | |
parent | 4eab0ff205368d3c1ab91b29d3d9e8f98325075e (diff) | |
download | pfsense-4633edc26dec188220a19bb03dc4e188e16acbab.zip pfsense-4633edc26dec188220a19bb03dc4e188e16acbab.tar.gz |
Fix an error with previous commit.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index 998ea07..378c943 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -77,7 +77,7 @@ if (isset($id) && $a_filter[$id]) { else $pconfig['type'] = $a_filter[$id]['type']; - if (isset($a_filter[$id]['floating']) || $if == "GeneralRuleS") { + if (isset($a_filter[$id]['floating']) || $if == "FloatingRules") { $pconfig['floating'] = $a_filter[$id]['floating']; if (isset($a_filter[$id]['interface']) && $a_filter[$id]['interface'] <> "") $pconfig['interface'] = $a_filter[$id]['interface']; @@ -478,7 +478,7 @@ include("head.inc"); <tr> <td width="22%" valign="top" class="vncellreq">Interface</td> <td width="78%" class="vtable"> -<?php if ($if == "GeneralRules" || isset($pconfig['floating'])): ?> +<?php if ($if == "FloatingRules" || isset($pconfig['floating'])): ?> <select name="interface[]" multiple="true" ="formselect" size="3"> <? else: ?> <select name="interface" class="formselect"> |