diff options
author | Michael Tänzer <neo@nhng.de> | 2013-01-23 00:24:14 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2013-01-23 00:24:14 +0100 |
commit | 9769049b3764c7744a296ac0a0b3381916b30749 (patch) | |
tree | a5d4fbbed640dcd189b5b783f31036c4cf6a0230 /pages/account | |
parent | aba34728a556c0e83658b91bf425d9e9d3d7af81 (diff) | |
download | cacert-devel-9769049b3764c7744a296ac0a0b3381916b30749.tar.gz cacert-devel-9769049b3764c7744a296ac0a0b3381916b30749.tar.xz cacert-devel-9769049b3764c7744a296ac0a0b3381916b30749.zip |
bug-1141: Show server certificates from deleted domains so a user canbug-1141
verify their state. Also: some cosmetic fixes
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/12.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pages/account/12.php b/pages/account/12.php index 44926ca..fa8b41a 100644 --- a/pages/account/12.php +++ b/pages/account/12.php @@ -36,7 +36,7 @@ `domaincerts`.`expire` as `expires`, `revoked` as `revoke`, UNIX_TIMESTAMP(`revoked`) as `revoked`, `CN`, `domaincerts`.`serial`, `domaincerts`.`id` as `id` from `domaincerts`,`domains` - where `memid`='".intval($_SESSION['profile']['id'])."' and `deleted`=0 and `domaincerts`.`domid`=`domains`.`id` "; + where `memid`='".intval($_SESSION['profile']['id'])."' and `domaincerts`.`domid`=`domains`.`id` "; if($viewall != 1) { $query .= "AND `revoked`=0 AND `renewed`=0 "; @@ -49,7 +49,7 @@ { ?> <tr> - <td colspan="6" class="DataTD"><?=_("No domains are currently listed.")?></td> + <td colspan="6" class="DataTD"><?=_("No certificates are currently listed.")?></td> </tr> <? } else { while($row = mysql_fetch_assoc($res)) @@ -85,8 +85,10 @@ <input type="submit" name="revoke" value="<?=_("Revoke/Delete")?>"></td> </tr> <? } ?> + <tr> + <td class="DataTD" colspan="6"><?=_("From here you can delete pending requests, or revoke valid certificates.")?></td> + </tr> </table> <input type="hidden" name="oldid" value="<?=$id?>"> <input type="hidden" name="csrf" value="<?=make_csrf('srvcerchange')?>" /> </form> -<p><?=_("From here you can delete pending requests, or revoke valid certificates.")?></p> |