diff options
author | Warren Baker <warren@decoy.co.za> | 2012-11-22 08:53:17 +0200 |
---|---|---|
committer | Warren Baker <warren@decoy.co.za> | 2012-11-22 08:53:17 +0200 |
commit | b164a3513e8cc980f3af2fc76cbb589a5f825f97 (patch) | |
tree | 83d242ada7e3a4e5d59d2081e98f7ebba91cafe0 /usr/local | |
parent | ae3f91d8480b17a5d0bec3de65dc1ccb0e1e667c (diff) | |
download | pfsense-b164a3513e8cc980f3af2fc76cbb589a5f825f97.zip pfsense-b164a3513e8cc980f3af2fc76cbb589a5f825f97.tar.gz |
Correct syntax
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/widgets/widgets/log.widget.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/widgets/widgets/log.widget.php b/usr/local/www/widgets/widgets/log.widget.php index cb69bf9..3d5e26d 100644 --- a/usr/local/www/widgets/widgets/log.widget.php +++ b/usr/local/www/widgets/widgets/log.widget.php @@ -121,7 +121,7 @@ function format_log_line(row) { <a href="#" onClick="javascript:getURL('diag_logs_filter.php?getrulenum=<?php echo "{$filterent['rulenum']},{$filterent['act']}"; ?>', outputrule);"><img border="0" src="<?php echo find_action_image($filterent['act']);?>" alt="<?php echo $filterent['act'];?>" title="<?php echo $filterent['act'];?>" /></a> </span> <span class="log-interface-mini"><?php echo htmlspecialchars($filterent['interface']);?> </span> <span class="log-source-mini"><?php echo htmlspecialchars($filterent['src']);?> </span> - <span class="log-destination-mini"><?php echo (strlen($filterent['dst']) < 19) ? htmlspecialchars($filterent['dst']) : htmlspecialchars(substr($filterent['dst'],0,18))."..."; ?> </span> + <span class="log-destination-mini"><?php echo (strlen($filterent['dst']) < 19 ? htmlspecialchars($filterent['dst']) : htmlspecialchars(substr($filterent['dst'],0,18))."..."); ?> </span> <?php if ($filterent['proto'] == "TCP") $filterent['proto'] .= ":{$filterent['tcpflags']}"; |