diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-04-26 03:40:17 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-04-26 03:40:17 +0000 |
commit | 7a419faa94d28585bedae135de4ce8d58c02600b (patch) | |
tree | e8710f091c2df416b26bd71623b00c7f6656f5ee /usr | |
parent | 4c743413a6644f1423af9329614f73356eff5e17 (diff) | |
download | pfsense-7a419faa94d28585bedae135de4ce8d58c02600b.zip pfsense-7a419faa94d28585bedae135de4ce8d58c02600b.tar.gz |
* Correct HTML attributes
* Add missing "
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/vpn_openvpn_certs.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/vpn_openvpn_certs.php b/usr/local/www/vpn_openvpn_certs.php index d4c99cd..a1ad2b4 100644 --- a/usr/local/www/vpn_openvpn_certs.php +++ b/usr/local/www/vpn_openvpn_certs.php @@ -84,9 +84,9 @@ include("head.inc"); <tr><td class="listhdrr" width="35%">Certificates</td><td width="60%" class="listhdrr">Description</td></tr> <?php foreach ($certificates as $cert => $ca) { ?> <tr class="vtable"> - <td class="vtable" width="35%"> + <td class="listlr" width="35%"> <?=$cert;?> - </td><td class="vtable" width="60%"></td> + </td><td class="listr" width="60%"></td> <td><a href=" <?php if ($ca['existing'] == "yes") @@ -98,7 +98,7 @@ include("head.inc"); <td><a href="vpn_openvpn_certs.php?delete=<?=$cert;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" title="<?=gettext("delete certificate");?>" width="17" height="17" border="0" alt="" /></a></td> </tr> <?php } ?> - <tr><td colspan="2"></td><td><a href="vpn_openvpn_certs_create.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" title="<?=gettext("add a new certificate");?> width="17" height="17" border="0" alt="" /></a></td></tr> + <tr><td colspan="2"></td><td><a href="vpn_openvpn_certs_create.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" title="<?=gettext("add a new certificate");?>" width="17" height="17" border="0" alt="" /></a></td></tr> <tr> <td colspan="2" >To import existing certificates please <a href="vpn_openvpn_certs_existing.php"> click this link.</a> |