Remove IPV6 operations.

This commit is contained in:
Scott Ullrich 2007-06-01 17:12:12 +00:00
parent c920cf13fe
commit 3f351350f2

View File

@ -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; ?>