diff options
author | Chris Buechler <cmb@pfsense.org> | 2014-11-05 22:58:19 -0600 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2014-11-05 22:58:19 -0600 |
commit | a012464eb42eebdf879fdf8df1824f9a1ecd30b6 (patch) | |
tree | ff58ec91e1aa93cd2e8cecf991e265762542933b /usr | |
parent | bb18cfcb3b993ff8045d42e229b93565aa5515ab (diff) | |
download | pfsense-a012464eb42eebdf879fdf8df1824f9a1ecd30b6.zip pfsense-a012464eb42eebdf879fdf8df1824f9a1ecd30b6.tar.gz |
fix captive portal status page display
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/status_captiveportal.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/status_captiveportal.php b/usr/local/www/status_captiveportal.php index a0c4db1..75e9d54 100644 --- a/usr/local/www/status_captiveportal.php +++ b/usr/local/www/status_captiveportal.php @@ -175,9 +175,9 @@ $mac_man = load_mac_manufacturer_table(); ?> </td> <td class="listr"><?=htmlspecialchars($cpent[4]);?> </td> - <td class="listr"><?=htmlspecialchars(date("m/d/Y H:i:s", $cpent[0]));?></td> <?php if ($_GET['showact']): $last_act = captiveportal_get_last_activity($cpent[2], $cpent[3]); ?> + <td class="listr"><?=htmlspecialchars(date("m/d/Y H:i:s", $cpent[0]));?></td> <td class="listr"><?php if ($last_act != 0) echo htmlspecialchars(date("m/d/Y H:i:s", $last_act));?></td> <?php else: ?> <td class="listr" colspan="2"><?=htmlspecialchars(date("m/d/Y H:i:s", $cpent[0]));?></td> |