diff options
-rw-r--r-- | includes/wot.inc.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/includes/wot.inc.php b/includes/wot.inc.php index 657fde9..2f12c01 100644 --- a/includes/wot.inc.php +++ b/includes/wot.inc.php @@ -147,7 +147,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)."'>$name</a>"; return $name; |