mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
MFC 11349
fix table display on IE when forwarding non tcp/ip protocols
This commit is contained in:
parent
8b4be0b20f
commit
d04221dcfe
@ -199,6 +199,8 @@ include("head.inc");
|
||||
echo $beginport;
|
||||
if ($wkports[$beginport])
|
||||
echo " (" . $wkports[$beginport] . ")";
|
||||
else
|
||||
echo " ";
|
||||
} else
|
||||
echo $beginport . " - " . $endport;
|
||||
?>
|
||||
@ -216,6 +218,8 @@ include("head.inc");
|
||||
echo $natent['local-port'];
|
||||
if ($wkports[$natent['local-port']])
|
||||
echo " (" . $wkports[$natent['local-port']] . ")";
|
||||
else
|
||||
echo " ";
|
||||
} else
|
||||
echo $natent['local-port'] . " - " .
|
||||
($natent['local-port']+$endport-$beginport);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user