diff options
author | Matthew Grooms <mgrooms@pfsense.org> | 2008-07-14 03:11:21 +0000 |
---|---|---|
committer | Matthew Grooms <mgrooms@pfsense.org> | 2008-07-14 03:11:21 +0000 |
commit | 135dad58347554f4cab104a838c47e186f304de8 (patch) | |
tree | 4de0ba0ea48c59be19f6dea221570fb28ea5917c | |
parent | c320be0a4a4c0f3eff6e287550200441d7adfce0 (diff) | |
download | pfsense-135dad58347554f4cab104a838c47e186f304de8.zip pfsense-135dad58347554f4cab104a838c47e186f304de8.tar.gz |
Fix a few bugs in the IPsec pages HTML output that were causing problems
with IE.
-rwxr-xr-x | usr/local/www/vpn_ipsec_mobile.php | 2 | ||||
-rw-r--r-- | usr/local/www/vpn_ipsec_phase2.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/vpn_ipsec_mobile.php b/usr/local/www/vpn_ipsec_mobile.php index 5d78b73..dcda0b1 100755 --- a/usr/local/www/vpn_ipsec_mobile.php +++ b/usr/local/www/vpn_ipsec_mobile.php @@ -551,7 +551,7 @@ login_banner_change(); function set_checked($var,& $chk) { if($var) - $chk = '"checked"'; + $chk = 'checked'; else $chk = ''; } diff --git a/usr/local/www/vpn_ipsec_phase2.php b/usr/local/www/vpn_ipsec_phase2.php index f32c567..00c89f5 100644 --- a/usr/local/www/vpn_ipsec_phase2.php +++ b/usr/local/www/vpn_ipsec_phase2.php @@ -374,7 +374,7 @@ function typesel_change_remote(bits) { ?> <tr> <td> - <input type="checkbox" name="ealgos[]?>" value="<?=$algo;?>"<?=$checked?>> + <input type="checkbox" name="ealgos[]" value="<?=$algo;?>"<?=$checked?>> </td> <td> <?=htmlspecialchars($algodata['name']);?> |