diff options
Diffstat (limited to 'pages/account/6.php')
-rw-r--r-- | pages/account/6.php | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/pages/account/6.php b/pages/account/6.php index ae72730..0bfb3c1 100644 --- a/pages/account/6.php +++ b/pages/account/6.php @@ -145,7 +145,6 @@ <p><?=_("Your certificate:")?></p> <pre><?=$cert?></pre> -<form method="post" action="account.php"> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> <td colspan="2" class="title"><?=_("Information about the certificte")?></td> @@ -162,15 +161,6 @@ if($row['revoked'] == 0) $row['revoke'] = _("Not Revoked"); ?> - <tr> - <td class="DataTD"><?=_("Renew/Revoke/Delete")?></td> -<? if($verified != _("Pending") && $verified != _("Revoked")) { ?> - <td class="DataTD"><input type="checkbox" name="revokeid[<?=$row['id']?>]" ></td> -<? } else if($verified != _("Revoked")) { ?> - <td class="DataTD"><input type="checkbox" name="delid[<?=$row['id']?>]"></td> -<? } else { ?> - <td class="DataTD"> </td> -<? } ?> </tr> <tr> <td class="DataTD"><?=_("Status")?></td> @@ -200,16 +190,9 @@ </tr> <tr> <td class="DataTD"><?=_("Comment")?></td> - <td class="DataTD"><input type="text" name="description" maxlength="100" size=100 value="<?=htmlspecialchars($row['description'])?>"></td> - </tr> - <tr> - <td class="DataTD" colspan="2"><input type="submit" name="change" value="<?=_("Change settings")?>"> </td> + <td class="DataTD"><?=htmlspecialchars($row['description'])?></td> </tr> </table> -<input type="hidden" name="oldid" value="6"> -<input type="hidden" name="certid" value="<?=$certid?>"> -</form> - <? showfooter(); exit; |