summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authordirk <beliebige_email_adresse@fidocon.de>2011-09-20 00:42:04 +0200
committerdirk <beliebige_email_adresse@fidocon.de>2011-09-20 00:42:04 +0200
commitd7add31fa77ecfc333acece499708e1c9cb83c81 (patch)
tree01139078fa0f28f0a8240e2d260df758abf339f6 /includes
parent7bde59f452e76602a01262f8a5797345565fa6d8 (diff)
downloadcacert-devel-d7add31fa77ecfc333acece499708e1c9cb83c81.tar.gz
cacert-devel-d7add31fa77ecfc333acece499708e1c9cb83c81.tar.xz
cacert-devel-d7add31fa77ecfc333acece499708e1c9cb83c81.zip
bug-827 added behavior of deleted accounts
Diffstat (limited to 'includes')
-rw-r--r--includes/wot.inc.php7
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&amp;userid=".intval($userid)."'>$name</a>";
return $name;