diff options
Diffstat (limited to 'pages/account/18.php')
-rw-r--r-- | pages/account/18.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pages/account/18.php b/pages/account/18.php index 72e61a2..445f25b 100644 --- a/pages/account/18.php +++ b/pages/account/18.php @@ -156,9 +156,11 @@ $status = array_key_exists('status',$_SESSION['_config']) ? intval($_SESSION['_c $verified = _("Revoked"); if($row['revoked'] == 0) $row['revoke'] = _("Not revoked"); - if(!$row['cfname'] || !$row['clname'] ){ + if(!$row['cfname'] && !$row['clname']){ $row['cfname'] = _("Not recorded"); $row['clname'] = ''; + } + if($row['revoked'] > 0 && (!$row['rfname'] && !$row['rlname'])){ $row['rfname'] = _("Not recorded"); $row['rlname'] = ''; } |