diff options
-rw-r--r-- | includes/notary.inc.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/includes/notary.inc.php b/includes/notary.inc.php index 9c60d57..af8d6f1 100644 --- a/includes/notary.inc.php +++ b/includes/notary.inc.php @@ -150,7 +150,12 @@ { $name = trim($name); if($name == "") - $name = _("Deleted before Verification"); + { + if ($userid == 0) + $name = _("System"); + else + $name = _("Deleted account"); + } else $name = "<a href='wot.php?id=9&userid=".intval($userid)."'>".sanitizeHTML($name)."</a>"; return $name; @@ -159,9 +164,7 @@ function show_email_link ($email,$userid) { $email = trim($email); - if($email == "") - $email = _("Deleted before Verification"); - else + if($email != "") $email = "<a href='account.php?id=43&userid=".intval($userid)."'>".sanitizeHTML($email)."</a>"; return $email; } |