diff options
author | Olav Morken <olav.morken@uninett.no> | 2009-12-16 08:52:13 +0000 |
---|---|---|
committer | Olav Morken <olav.morken@uninett.no> | 2009-12-16 08:52:13 +0000 |
commit | c00a31176b8080ed7eb4e48357fd6dce1dfa8b3a (patch) | |
tree | af4be8a692858dae725ff59831bfa7aac5b2d7f2 /lib | |
parent | 989ff1f731291e91113f166b5481c887b387e9b3 (diff) | |
download | simplesamlphp-c00a31176b8080ed7eb4e48357fd6dce1dfa8b3a.zip simplesamlphp-c00a31176b8080ed7eb4e48357fd6dce1dfa8b3a.tar.gz simplesamlphp-c00a31176b8080ed7eb4e48357fd6dce1dfa8b3a.tar.bz2 |
Auth_Default: Fix local logout.
This patch fixes a bug introduced in r2019.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2052 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib')
-rw-r--r-- | lib/SimpleSAML/Auth/Default.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/SimpleSAML/Auth/Default.php b/lib/SimpleSAML/Auth/Default.php index 74ec80d..0024854 100644 --- a/lib/SimpleSAML/Auth/Default.php +++ b/lib/SimpleSAML/Auth/Default.php @@ -141,7 +141,9 @@ class SimpleSAML_Auth_Default { assert('is_string($returnURL)'); self::initLogoutReturn($returnURL); - self::logoutCompleted($state); + + /* Redirect... */ + SimpleSAML_Utilities::redirect($returnURL); } |