diff options
author | INOPIAE <inopiae@cacert.org> | 2012-11-11 20:14:15 +0100 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2012-11-12 01:26:38 +0100 |
commit | 3ecae0b73b5a750e7853838b3bded110011536e5 (patch) | |
tree | 1e92ac90733e51761ae44c3a085c70a9cf181a29 /pages/gpg/2.php | |
parent | 7baaa9a0ac611329539a43031ca3d0e81bba2b5f (diff) | |
download | cacert-devel-3ecae0b73b5a750e7853838b3bded110011536e5.tar.gz cacert-devel-3ecae0b73b5a750e7853838b3bded110011536e5.tar.xz cacert-devel-3ecae0b73b5a750e7853838b3bded110011536e5.zip |
bug 782: Added a comment field to all certificate pages
Diffstat (limited to 'pages/gpg/2.php')
-rw-r--r-- | pages/gpg/2.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/gpg/2.php b/pages/gpg/2.php index e10935e..fd26367 100644 --- a/pages/gpg/2.php +++ b/pages/gpg/2.php @@ -24,13 +24,13 @@ <td class="DataTD"><?=_("Email Address")?></td> <td class="DataTD"><?=_("Expires")?></td> <td class="DataTD"><?=_("Key ID")?></td> - + <td class="DataTD"><?=_("Comment")?></td> <? $query = "select UNIX_TIMESTAMP(`issued`) as `issued`, UNIX_TIMESTAMP(`expire`) - UNIX_TIMESTAMP() as `timeleft`, UNIX_TIMESTAMP(`expire`) as `expired`, `expire` as `expires`, `id`, `level`, - `email`,`keyid` from `gpg` where `memid`='".intval($_SESSION['profile']['id'])."' + `email`,`keyid`,`description` from `gpg` where `memid`='".intval($_SESSION['profile']['id'])."' ORDER BY `issued` desc"; $res = mysql_query($query); if(mysql_num_rows($res) <= 0) @@ -62,7 +62,7 @@ <? } ?> <td class="DataTD"><?=$row['expires']?></td> <td class="DataTD"><a href="gpg.php?id=3&cert=<?=$row['id']?>"><?=$row['keyid']?></a></td> - + <td class="DataTD"><?=$row['description']?></td> </tr> <? } ?> <? } ?> |