diff options
-rw-r--r-- | includes/notary.inc.php | 6 | ||||
-rw-r--r-- | pages/account/18.php | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/includes/notary.inc.php b/includes/notary.inc.php index d71cb2d..337d8d5 100644 --- a/includes/notary.inc.php +++ b/includes/notary.inc.php @@ -1333,9 +1333,9 @@ function output_orgclientcert_table_header($orgname){ <td class="DataTD"><?=_("Status")?></td> <td class="DataTD"><?=_("CommonName")?></td> <td class="DataTD"><?=_("SerialNumber")?></td> - <td class="DataTD"><?=_("SerialNumber")?></td> + <td class="DataTD"><?=_("Created by")?></td> <td class="DataTD"><?=_("Revoked")?></td> - <td class="DataTD"><?=_("SerialNumber")?></td> + <td class="DataTD"><?=_("Revoked by")?></td> <td class="DataTD"><?=_("Expires")?></td> <td colspan="2" class="DataTD"><?=_("Comment *")?></td> </tr> @@ -1366,7 +1366,7 @@ function output_orgclient_table_row($verified, $row, $support = 0){ <td class="DataTD"><?=$row['serial']?></td> <td class="DataTD"><?=$row['cfname'] . ' ' . $row['clname']?></td> <td class="DataTD"><?=$row['revoke']?></td> - <td class="DataTD"><?=$row['cfname'] . ' ' . $row['clname']?></td> + <td class="DataTD"><?=$row['rfname'] . ' ' . $row['rlname']?></td> <td class="DataTD"><?=$row['expires']?></td> <? if($support == 1) { ?> <td class="DataTD"><?=htmlspecialchars($row['description'])?></td> diff --git a/pages/account/18.php b/pages/account/18.php index 3641cd4..8c74b75 100644 --- a/pages/account/18.php +++ b/pages/account/18.php @@ -155,12 +155,12 @@ $status = array_key_exists('status',$_SESSION['_config']) ? intval($_SESSION['_c if($row['revoked'] > 0) $verified = _("Revoked"); if($row['revoked'] == 0) - $row['revoke'] = _("Not Revoked"); - if(!$row['cfname'] && !!$row['clname'] ){ + $row['revoke'] = _("Not revoked"); + if(!$row['cfname'] && !$row['clname'] ){ $row['cfname'] = _("Not recorded"); - $row['clname'] = _(""); + $row['clname'] = ''; $row['rfname'] = _("Not recorded"); - $row['rlname'] = _(""); + $row['rlname'] = ''; } /*?> |