mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Indicate if a certificate has been revoked, both in the cert list and the user manager list.
This commit is contained in:
parent
fc54f29bf4
commit
150bbe09fb
@ -836,6 +836,9 @@ function internalca_change() {
|
||||
<td class="listr"><?=$caname;?> </td>
|
||||
<td class="listr"><?=$subj;?> </td>
|
||||
<td class="listr">
|
||||
<?php if (is_cert_revoked($cert)): ?>
|
||||
<b>Revoked</b><br/>
|
||||
<?php endif; ?>
|
||||
<?php if (is_webgui_cert($cert['refid'])): ?>
|
||||
webConfigurator<br/>
|
||||
<?php endif; ?>
|
||||
|
||||
@ -645,6 +645,9 @@ function sshkeyClicked(obj) {
|
||||
<tr>
|
||||
<td class="listlr">
|
||||
<?=htmlspecialchars($cert['descr']);?>
|
||||
<?php if (is_cert_revoked($cert)): ?>
|
||||
(<b>Revoked</b>)
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td class="listr">
|
||||
<?=htmlspecialchars($ca['descr']);?>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user