diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/Security/TUserManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Security/TUserManager.php b/framework/Security/TUserManager.php index 882c5d5c..ce4d0343 100644 --- a/framework/Security/TUserManager.php +++ b/framework/Security/TUserManager.php @@ -66,7 +66,7 @@ class TUser extends TComponent implements IUser $this->_isGuest=TPropertyValue::ensureBoolean($value);
if($this->_isGuest)
{
- $this->_name='';
+ $this->_name=$this->_manager->getGuestName();
$this->_roles=array();
}
}
|