Revision 2b333210
Added by Jim Pingle over 12 years ago
usr/local/www/system_camanager.php | ||
---|---|---|
600 | 600 |
$name = htmlspecialchars($ca['descr']); |
601 | 601 |
$subj = cert_get_subject($ca['crt']); |
602 | 602 |
$issuer = cert_get_issuer($ca['crt']); |
603 |
list($startdate, $enddate) = cert_get_dates($ca['crt']); |
|
603 | 604 |
if($subj == $issuer) |
604 | 605 |
$issuer_name = "<em>" . gettext("self-signed") . "</em>"; |
605 | 606 |
else |
... | ... | |
645 | 646 |
<td class="listr"><?=$internal;?> </td> |
646 | 647 |
<td class="listr"><?=$issuer_name;?> </td> |
647 | 648 |
<td class="listr"><?=$certcount;?> </td> |
648 |
<td class="listr"><?=$subj;?> </td> |
|
649 |
<td class="listr"><?=$subj;?><br /> |
|
650 |
<table width="100%" style="font-size: 9px"> |
|
651 |
<tr> |
|
652 |
<td width="10%"> </td> |
|
653 |
<td width="20%"><?=gettext("Valid From")?>:</td> |
|
654 |
<td width="70%"><?= $startdate ?></td> |
|
655 |
</tr> |
|
656 |
<tr> |
|
657 |
<td> </td> |
|
658 |
<td><?=gettext("Valid Until")?>:</td> |
|
659 |
<td><?= $enddate ?></td> |
|
660 |
</tr> |
|
661 |
</table> |
|
662 |
</td> |
|
649 | 663 |
<td valign="middle" nowrap class="list"> |
650 | 664 |
<a href="system_camanager.php?act=edit&id=<?=$i;?>"> |
651 | 665 |
<img src="/themes/<?= $g['theme'];?>/images/icons/icon_e.gif" title="<?=gettext("edit CA");?>" alt="<?=gettext("edit CA");?>" width="17" height="17" border="0" /> |
Also available in: Unified diff
Show cert start/end dates in list.