diff options
author | xue <> | 2007-06-15 15:53:09 +0000 |
---|---|---|
committer | xue <> | 2007-06-15 15:53:09 +0000 |
commit | b51f46aad1ba1c699fad881543158365ee0a87b5 (patch) | |
tree | eabcc3970a4d731bed1b08a8f582175a0c085f8b /framework/Security/TAuthManager.php | |
parent | dd7a47c0ec81857d512b73b92b5f26321f351c39 (diff) |
Fixed #627.
Diffstat (limited to 'framework/Security/TAuthManager.php')
-rw-r--r-- | framework/Security/TAuthManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Security/TAuthManager.php b/framework/Security/TAuthManager.php index e578f0c9..ef9f47f9 100644 --- a/framework/Security/TAuthManager.php +++ b/framework/Security/TAuthManager.php @@ -292,7 +292,7 @@ class TAuthManager extends TModule throw new TConfigurationException('authmanager_session_required');
else
{
- $this->getUser()->setIsGuest(true);
+ $this->getApplication()->getUser()->setIsGuest(true);
$session->destroy();
}
}
|