summaryrefslogtreecommitdiff
path: root/framework/Security
diff options
context:
space:
mode:
authorxue <>2005-11-10 21:57:17 +0000
committerxue <>2005-11-10 21:57:17 +0000
commit914776d70153e2db570704def66e03446499c7a3 (patch)
treeff09e12469a054ec98627e6d1123b61d6ad03acb /framework/Security
parentb7eacfc49c2b15aef3a5dd7b71b826a045e7e59b (diff)
Fixed an issue about guest user name setting.
Diffstat (limited to 'framework/Security')
-rw-r--r--framework/Security/TUserManager.php2
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();
}
}