diff options
author | N0YB <Al_Stu@Frontier.com> | 2014-02-18 18:33:47 -0800 |
---|---|---|
committer | N0YB <Al_Stu@Frontier.com> | 2014-02-18 18:33:47 -0800 |
commit | 7e23690a152250a1e89a0d2455a1d65f61754352 (patch) | |
tree | c5dc469d8421d81cb1f285f3cdb62d0ce17f9de8 /usr | |
parent | ec56ae9dd05bf25821bc3b4703939995fb0043e1 (diff) | |
download | pfsense-7e23690a152250a1e89a0d2455a1d65f61754352.zip pfsense-7e23690a152250a1e89a0d2455a1d65f61754352.tar.gz |
XHTML Compliance
VPN Logs Status
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/diag_logs_vpn.php | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/usr/local/www/diag_logs_vpn.php b/usr/local/www/diag_logs_vpn.php index 116655e..70ca4ac 100755 --- a/usr/local/www/diag_logs_vpn.php +++ b/usr/local/www/diag_logs_vpn.php @@ -145,26 +145,26 @@ include("head.inc"); "/diag_logs_vpn.php?vpntype=pptp"); $tab_array[] = array(gettext("PPTP Raw"), (($vpntype == "pptp") && ($mode == "raw")), - "/diag_logs_vpn.php?vpntype=pptp&mode=raw"); + "/diag_logs_vpn.php?vpntype=pptp&mode=raw"); $tab_array[] = array(gettext("PPPoE Logins"), (($vpntype == "poes") && ($mode != "raw")), "/diag_logs_vpn.php?vpntype=poes"); $tab_array[] = array(gettext("PPPoE Raw"), (($vpntype == "poes") && ($mode == "raw")), - "/diag_logs_vpn.php?vpntype=poes&mode=raw"); + "/diag_logs_vpn.php?vpntype=poes&mode=raw"); $tab_array[] = array(gettext("L2TP Logins"), (($vpntype == "l2tp") && ($mode != "raw")), "/diag_logs_vpn.php?vpntype=l2tp"); $tab_array[] = array(gettext("L2TP Raw"), (($vpntype == "l2tp") && ($mode == "raw")), - "/diag_logs_vpn.php?vpntype=l2tp&mode=raw"); + "/diag_logs_vpn.php?vpntype=l2tp&mode=raw"); display_top_tabs($tab_array); ?> </td></tr> <tr> <td class="tabcont"> <form action="diag_logs_vpn.php" method="post"> - <table width="100%" border="0" cellpadding="0" cellspacing="0"><tr> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="4" class="listtopic"> <?php printf(gettext('Last %1$s %2$s VPN log entries'),$nentries,$vpns[$vpntype]);?></td> @@ -182,11 +182,13 @@ include("head.inc"); endif; ?> </table> <br /> - <input type="hidden" name="vpntype" id="vpntype" value="<?=$vpntype;?>"> - <input type="hidden" name="mode" id="mode" value="<?=$mode;?>"> - <input name="clear" type="submit" class="formbtn" value="<?=gettext("Clear log"); ?>"> + <input type="hidden" name="vpntype" id="vpntype" value="<?=$vpntype;?>" /> + <input type="hidden" name="mode" id="mode" value="<?=$mode;?>" /> + <input name="clear" type="submit" class="formbtn" value="<?=gettext("Clear log"); ?>" /> </form> </td> </tr> </table> <?php include("fend.inc"); ?> +</body> +</html> |