diff options
author | Bernhard Fröhlich <bernhard@cacert.org> | 2011-09-19 23:03:31 +0200 |
---|---|---|
committer | Bernhard Fröhlich <bernhard@cacert.org> | 2011-09-19 23:03:31 +0200 |
commit | 1ca33e5eb5b678767d7cbcef5d55b758b7c71452 (patch) | |
tree | ae82419f346c360691fee460f7cdbd01563790eb | |
parent | a182cb4e884cc9e6a004a0a087e2a0644dcea3b7 (diff) | |
download | cacert-devel-1ca33e5eb5b678767d7cbcef5d55b758b7c71452.tar.gz cacert-devel-1ca33e5eb5b678767d7cbcef5d55b758b7c71452.tar.xz cacert-devel-1ca33e5eb5b678767d7cbcef5d55b758b7c71452.zip |
Expiry dates of revoked certificates count as well for "Latest Expire"
-rw-r--r-- | pages/account/43.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pages/account/43.php b/pages/account/43.php index 0d9ec11..425add5 100644 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -348,7 +348,8 @@ $drow2 = mysql_fetch_assoc($dres2); $rcrevoked += intval($drow2['drevoked']); - $query2 = "select expire as mexpire from `domaincerts` where `domid`='".$ndomid."' and revoked = '0000-00-00 00:00:00' order by expire desc "; + // For Arbitration purpose expiry dates of revoked certs are also relevant! + $query2 = "select expire as mexpire from `domaincerts` where `domid`='".$ndomid."' order by expire desc "; $dres2 = mysql_query($query2); $drow2 = mysql_fetch_assoc($dres2); $rcexpiremax = max($rcexpiremax,$drow2['mexpire']); @@ -359,7 +360,7 @@ ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> - <td colspan="6" class="title"><?=_("Total Certificates State")?></td> + <td colspan="6" class="title"><?=_("Total Certificates Status")?></td> </tr> <tr> |