diff options
author | xue <> | 2007-04-01 01:25:29 +0000 |
---|---|---|
committer | xue <> | 2007-04-01 01:25:29 +0000 |
commit | 345f4c1e149d7c84e9d10831971e2a9061246d72 (patch) | |
tree | 1d4798a917704f0de4e79528097937d13230ed06 /framework/Security/TAuthManager.php | |
parent | c0d52d5a963147fa9d9ac6e1995931a3c802b5a5 (diff) |
fixed #575.
Diffstat (limited to 'framework/Security/TAuthManager.php')
-rw-r--r-- | framework/Security/TAuthManager.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/framework/Security/TAuthManager.php b/framework/Security/TAuthManager.php index 481b9ddb..548e9522 100644 --- a/framework/Security/TAuthManager.php +++ b/framework/Security/TAuthManager.php @@ -169,7 +169,7 @@ class TAuthManager extends TModule if($service instanceof TPageService)
{
$returnUrl=$application->getRequest()->getRequestUri();
- $application->getSession()->add(self::RETURN_URL_VAR,$returnUrl);
+ $this->setReturnUrl($returnUrl);
$url=$service->constructUrl($this->getLoginPage());
$application->getResponse()->redirect($url);
}
@@ -185,6 +185,15 @@ class TAuthManager extends TModule }
/**
+ * Sets the URL that the browser should be redirected to when login succeeds.
+ * @param string the URL to be redirected to.
+ */
+ public function setReturnUrl($value)
+ {
+ $this->getSession()->add(self::RETURN_URL_VAR,$value);
+ }
+
+ /**
* Performs the real authentication work.
* An OnAuthenticate event will be raised if there is any handler attached to it.
* If the application already has a non-null user, it will return without further authentication.
|