mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
security/strongswan-legacy: follow core in naming IPv4+6 "any"
This will die eventually since "inet46" is only in the legacy code, but in order to mark this spot as done we do the rename.
This commit is contained in:
parent
842ec4b972
commit
34a9438fbb
1 changed files with 2 additions and 2 deletions
|
|
@ -698,9 +698,9 @@ include("head.inc");
|
|||
<td>
|
||||
<select name="protocol">
|
||||
<?php
|
||||
$protocols = array("inet" => "IPv4", "inet6" => "IPv6");
|
||||
$protocols = ['inet' => 'IPv4', 'inet6' => 'IPv6'];
|
||||
if (!empty($pconfig['mobile'])) {
|
||||
$protocols["inet46"] = "IPv4+6";
|
||||
$protocols['inet46'] = 'any';
|
||||
}
|
||||
foreach ($protocols as $protocol => $name) :
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in a new issue