From 4ac6fae7da6693bfb6bc0331a49bb18508d3338c Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Tue, 2 Jan 2018 08:45:54 +0100 Subject: [PATCH] Firewall/Nat outbound, change caption --- src/www/firewall_nat_out.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/firewall_nat_out.php b/src/www/firewall_nat_out.php index e77e2cd94..c50dd4c57 100644 --- a/src/www/firewall_nat_out.php +++ b/src/www/firewall_nat_out.php @@ -492,7 +492,7 @@ include("head.inc"); $intfnatv4 = array(); foreach ($fw->getInterfaceMapping() as $intf => $intfcf) { if (!empty($intfcf['ifconfig']['ipv4']) && empty($intfcf['gateway'])) { - $intfv4[] = $intfcf['descr'] . ":" . gettext("Network"); + $intfv4[] = $intfcf['descr'] . " " . gettext("Networks"); } elseif (substr($intfcf['if'], 0, 4) != 'ovpn' && !empty($intfcf['gateway'])) { $intfnatv4[] = $intfcf; }