From: jordan Date: Mon, 11 Apr 2011 16:01:48 +0000 (+0000) Subject: OSQA-649, fixing the truncate username feature, now it works for basic users too. X-Git-Tag: live~347 X-Git-Url: https://git.openstreetmap.org./osqa.git/commitdiff_plain/7a9c727d3b1e52b860511e80f67d2e8f6344f163 OSQA-649, fixing the truncate username feature, now it works for basic users too. git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@966 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum/models/user.py b/forum/models/user.py index 665c4d4..523397e 100644 --- a/forum/models/user.py +++ b/forum/models/user.py @@ -162,7 +162,7 @@ class User(BaseModel, DjangoUser): if self.is_staff: return u"%s \u2666" % username - return self.username + return username @property def last_activity(self):