diff options
author | xue <> | 2005-11-10 21:57:17 +0000 |
---|---|---|
committer | xue <> | 2005-11-10 21:57:17 +0000 |
commit | 914776d70153e2db570704def66e03446499c7a3 (patch) | |
tree | ff09e12469a054ec98627e6d1123b61d6ad03acb /framework/Security/TUserManager.php | |
parent | b7eacfc49c2b15aef3a5dd7b71b826a045e7e59b (diff) |
Fixed an issue about guest user name setting.
Diffstat (limited to 'framework/Security/TUserManager.php')
-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();
}
}
|