Bug #2762 » firewall_rules_edit.diff
firewall_rules_edit.php 2015-08-04 10:15:29.000000000 +0200 | ||
---|---|---|
992 | 992 |
<td width="78%" class="vtable"> |
993 | 993 |
<select <?=$edit_disabled;?> name="proto" class="formselect" onchange="proto_change()"> |
994 | 994 |
<?php |
995 |
$protocols = explode(" ", "TCP UDP TCP/UDP ICMP ESP AH GRE IPV6 IGMP PIM OSPF SCTP any carp pfsync"); |
|
995 |
$protocols = explode(" ", "TCP UDP TCP/UDP ICMP ESP AH GRE IPV6 ipv6-frag IGMP PIM OSPF SCTP any carp pfsync");
|
|
996 | 996 |
foreach ($protocols as $proto): ?> |
997 | 997 |
<option value="<?=strtolower($proto);?>" <?php if (strtolower($proto) == $pconfig['proto']) echo "selected=\"selected\""; ?>><?=htmlspecialchars($proto);?></option> |
998 | 998 |
<?php endforeach; ?> |
- « Previous
- 1
- 2
- Next »