diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-10-16 17:37:25 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-10-16 17:37:25 +0000 |
commit | 4d38bfc3f38192181ece167e990510ae18758caf (patch) | |
tree | ea66d27abfad3962318ff572817266f16144cd22 /usr | |
parent | 3c5d0ab2b54c497744a54509fb5d3af227c86fa1 (diff) | |
download | pfsense-4d38bfc3f38192181ece167e990510ae18758caf.zip pfsense-4d38bfc3f38192181ece167e990510ae18758caf.tar.gz |
MFC 6877
Update terminology - should help cut down questions too
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_nat_out.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usr/local/www/firewall_nat_out.php b/usr/local/www/firewall_nat_out.php index f63e158..df69d8a 100755 --- a/usr/local/www/firewall_nat_out.php +++ b/usr/local/www/firewall_nat_out.php @@ -243,10 +243,10 @@ include("head.inc"); <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">Source Port</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="20%" class="listhdrr">NAT Port</td> - <td width="20%" class="listhdrr">Target</td> <td width="25%" class="listhdr">Description</td> <td width="5%" class="list"></td> </tr> @@ -268,14 +268,6 @@ 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']) - echo "*"; - else - echo $natent['sourceport']; - ?> - </td> - <td class="listr" onClick="fr_toggle(<?=$nnats;?>)" id="frd<?=$nnats;?>" ondblclick="document.location='firewall_nat_out_edit.php?id=<?=$nnats;?>';"> - <?php if (isset($natent['destination']['any'])) echo "*"; else { @@ -301,6 +293,14 @@ include("head.inc"); echo $natent['target']; ?> </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']) + echo "*"; + else + echo $natent['sourceport']; + ?> + </td> <td class="listbg" onClick="fr_toggle(<?=$nnats;?>)" ondblclick="document.location='firewall_nat_out_edit.php?id=<?=$nnats;?>';"> <font color="#FFFFFF"><?=htmlspecialchars($natent['descr']);?> </td> |