MFC 11349

fix table display on IE when forwarding non tcp/ip protocols
This commit is contained in:
Scott Ullrich 2006-04-24 18:46:43 +00:00
parent 8b4be0b20f
commit d04221dcfe

View File

@ -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);