diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2016-01-11 14:50:29 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2016-01-11 14:50:29 -0500 |
commit | 875f6c8ba42b2e44851106122c41428af54acbd7 (patch) | |
tree | 4af86ae79880f76834f71056d1f889cd42aed792 | |
parent | 8a088c0b668b011060d7747dbdfafa325921f687 (diff) | |
download | pfsense-875f6c8ba42b2e44851106122c41428af54acbd7.zip pfsense-875f6c8ba42b2e44851106122c41428af54acbd7.tar.gz |
e-apply f693437
-rw-r--r-- | src/usr/local/www/status_logs_vpn.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/status_logs_vpn.php b/src/usr/local/www/status_logs_vpn.php index d5457e3..2f9873d 100644 --- a/src/usr/local/www/status_logs_vpn.php +++ b/src/usr/local/www/status_logs_vpn.php @@ -186,13 +186,13 @@ if (!$rawfilter) { <?=htmlspecialchars($filterent['time'])?> </td> <td style="word-wrap:break-word; word-break:break-all; white-space:normal"> - <? if ($filterent['action'] == "login") { ?> + <?php if ($filterent['action'] == "login") { ?> <i class="fa fa-arrow-left" title="in"></i> - <? } else if ($filterent['action'] == "logout") { ?> + <?php } else if ($filterent['action'] == "logout") { ?> <i class="fa fa-arrow-right" title="out"></i> - <? } else { ?> + <?php } else { ?> <i><?=htmlspecialchars($filterent['action'])?></i> - <? } ?> + <?php } ?> </td> <td> <?=htmlspecialchars($filterent['user'])?> |