diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-06-01 17:12:45 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-06-01 17:12:45 +0000 |
commit | 773861f62998b54561cf9814925f91ebe26de8e4 (patch) | |
tree | cfadc77fa2593efd5b56118b4d9fded63c7983bd /usr | |
parent | bcc49d35d1cac206b9ddb7e5bd3f518f30a4bfe2 (diff) | |
download | pfsense-773861f62998b54561cf9814925f91ebe26de8e4.zip pfsense-773861f62998b54561cf9814925f91ebe26de8e4.tar.gz |
Remove IPV6 operations.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_rules_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/firewall_rules_edit.php b/usr/local/www/firewall_rules_edit.php index 76f3ba6..c188a84 100755 --- a/usr/local/www/firewall_rules_edit.php +++ b/usr/local/www/firewall_rules_edit.php @@ -408,7 +408,7 @@ include("head.inc"); <td width="78%" class="vtable"> <select name="proto" class="formfld" onchange="proto_change()"> <?php - $protocols = explode(" ", "TCP UDP TCP/UDP ICMP IPV6-ICMP ESP AH GRE IPv6 IGMP any carp pfsync"); + $protocols = explode(" ", "TCP UDP TCP/UDP ICMP ESP AH GRE IGMP any carp pfsync"); foreach ($protocols as $proto): ?> <option value="<?=strtolower($proto);?>" <?php if (strtolower($proto) == $pconfig['proto']) echo "selected"; ?>><?=htmlspecialchars($proto);?></option> <?php endforeach; ?> |