diff options
author | gnhb <gnoahb@gmail.com> | 2010-06-16 22:17:34 +0700 |
---|---|---|
committer | gnhb <gnoahb@gmail.com> | 2010-06-16 22:17:34 +0700 |
commit | ed476f6f106b5d59ee5ba064f001c541259712de (patch) | |
tree | c68ba1bf6f78c98c18987407102878eca0f33b57 /usr | |
parent | 4a1779a90e0e831c380bbc10886b4138a106c37a (diff) | |
download | pfsense-ed476f6f106b5d59ee5ba064f001c541259712de.zip pfsense-ed476f6f106b5d59ee5ba064f001c541259712de.tar.gz |
Add missing semicolon.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/status_interfaces.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/status_interfaces.php b/usr/local/www/status_interfaces.php index 3e738e9..52d6a93 100755 --- a/usr/local/www/status_interfaces.php +++ b/usr/local/www/status_interfaces.php @@ -151,7 +151,7 @@ include("head.inc"); </tr> <?php endif; if ($ifinfo['ppp_uptime'] || $ifinfo['ppp_uptime_accumulated']): ?> <tr> - <td width="22%" class="vncellt">Uptime <?php if ($ifinfo['ppp_uptime_accumulated']) echo "(historical)" ?></td> + <td width="22%" class="vncellt">Uptime <?php if ($ifinfo['ppp_uptime_accumulated']) echo "(historical)"; ?></td> <td width="78%" class="listr"> <?=htmlspecialchars($ifinfo['ppp_uptime']);?> <?=htmlspecialchars($ifinfo['ppp_uptime_accumulated']);?> </td> |