diff options
author | NOYB <Al_Stu@Frontier.com> | 2015-11-29 23:08:58 -0800 |
---|---|---|
committer | NOYB <Al_Stu@Frontier.com> | 2015-11-29 23:08:58 -0800 |
commit | b6db8c972af7720e878a6c1f4363a2998ad737f5 (patch) | |
tree | fb63805fa6b868ee0ac20293b043c429885132f0 /src/usr/local | |
parent | 4d84821dd47f202bc43b81a0150b85bdcf31e772 (diff) | |
download | pfsense-b6db8c972af7720e878a6c1f4363a2998ad737f5.zip pfsense-b6db8c972af7720e878a6c1f4363a2998ad737f5.tar.gz |
Log Widget - Source
Source port is not all that useful in widget view and takes up space better used by destination.
Add missing semi-colon.
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/widgets/widgets/log.widget.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/widgets/widgets/log.widget.php b/src/usr/local/www/widgets/widgets/log.widget.php index b5bc552..7fb26ab 100644 --- a/src/usr/local/www/widgets/widgets/log.widget.php +++ b/src/usr/local/www/widgets/widgets/log.widget.php @@ -175,7 +175,7 @@ if (isset($_POST['lastsawtime'])) { <td title="<?=htmlspecialchars($filterent['time'])?>"><?=substr(htmlspecialchars($filterent['time']),0,-3)?></td> <td><?=htmlspecialchars($filterent['interface']);?></td> <td><a href="diag_dns.php?host=<?=$filterent['srcip']?>" - title="<?=gettext("Reverse Resolve with DNS")?>"><?=$srcIP?></a>:<?=htmlspecialchars($filterent['srcport'])?> + title="<?=gettext("Reverse Resolve with DNS");?>"><?=$srcIP?></a> </td> <td><a href="diag_dns.php?host=<?=$filterent['dstip']?>" title="<?=gettext("Reverse Resolve with DNS");?>"><?=$dstIP?></a>:<?=htmlspecialchars($filterent['dstport'])?> |