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:
Franco Fichtner 2026-05-20 11:15:17 +02:00
parent 842ec4b972
commit 34a9438fbb

View file

@ -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) :
?>