diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-02-01 19:13:15 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-02-01 19:13:15 +0000 |
commit | 3af33993764c132d6bfa783912a9fb97bf0af018 (patch) | |
tree | 0c26874e39f4b001ca232662aaa2550751410bf9 /usr | |
parent | 42ea4cb41bdc297d5c6ded3a423e1b0b047b14a1 (diff) | |
download | pfsense-3af33993764c132d6bfa783912a9fb97bf0af018.zip pfsense-3af33993764c132d6bfa783912a9fb97bf0af018.tar.gz |
MFC
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_nat_out.php | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/usr/local/www/firewall_nat_out.php b/usr/local/www/firewall_nat_out.php index 3c1e0cf..797c089 100755 --- a/usr/local/www/firewall_nat_out.php +++ b/usr/local/www/firewall_nat_out.php @@ -240,10 +240,11 @@ include("head.inc"); <td width="3%" class="list"> </td> <td width="3%" class="list"> </td> <td width="10%" class="listhdrr">Interface</td> - <td width="20%" class="listhdrr">Source</td> - <td width="20%" class="listhdrr">Destination</td> - <td width="20%" class="listhdrr">Destination Port</td> - <td width="20%" class="listhdrr">NAT Address</td> + <td width="15%" class="listhdrr">Source</td> + <td width="10%" class="listhdrr">Source Port</td> + <td width="15%" class="listhdrr">Destination</td> + <td width="10%" class="listhdrr">Destination Port</td> + <td width="15%" class="listhdrr">NAT Address</td> <td width="10%" class="listhdrr">NAT Port</td> <td width="10%" class="listhdrr">Static Port</td> <td width="25%" class="listhdr">Description</td> @@ -304,11 +305,11 @@ include("head.inc"); </td> <td class="listr" onClick="fr_toggle(<?=$nnats;?>)" id="frd<?=$nnats;?>" ondblclick="document.location='firewall_nat_out_edit.php?id=<?=$nnats;?>';"> <?php - if (!$natent['sourceport']) + if (!$natent['natport']) echo "*"; else - echo $natent['sourceport']; - ?> + echo $natent['natport']; + ?> </td> <td class="listr" onClick="fr_toggle(<?=$nnats;?>)" id="frd<?=$nnats;?>" ondblclick="document.location='firewall_nat_out_edit.php?id=<?=$nnats;?>';"> <?php @@ -333,7 +334,7 @@ include("head.inc"); </table> <?php $i++; $nnats++; endforeach; ?> <tr> - <td class="list" colspan="10"></td> + <td class="list" colspan="11"></td> <td class="list" valign="middle" nowrap> <table border="0" cellspacing="0" cellpadding="1"> <tr> |