diff options
author | xue <> | 2006-11-06 15:22:08 +0000 |
---|---|---|
committer | xue <> | 2006-11-06 15:22:08 +0000 |
commit | 63b0c46594a8789b0644be47ec61cf2372cf5ff0 (patch) | |
tree | b9c039726df4e95d001ff426b523b832d3ca92de /demos/personal | |
parent | bce854019ec98edc77b541af3d971a1d95da13af (diff) |
Fixed URL redirection broken issue.
Diffstat (limited to 'demos/personal')
-rw-r--r-- | demos/personal/protected/Pages/Layout.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/personal/protected/Pages/Layout.php b/demos/personal/protected/Pages/Layout.php index 37ed95d4..f5009542 100644 --- a/demos/personal/protected/Pages/Layout.php +++ b/demos/personal/protected/Pages/Layout.php @@ -5,7 +5,7 @@ class Layout extends TTemplateControl public function logout($sender,$param)
{
$this->Application->getModule('auth')->logout();
- $this->Response->redirect($this->Service->constructUrl('Home'));
+ $this->Response->redirect($this->Service->constructUrl('Home',null,false));
}
}
|