summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorOlav Morken <olav.morken@uninett.no>2009-12-16 08:52:13 +0000
committerOlav Morken <olav.morken@uninett.no>2009-12-16 08:52:13 +0000
commitc00a31176b8080ed7eb4e48357fd6dce1dfa8b3a (patch)
treeaf4be8a692858dae725ff59831bfa7aac5b2d7f2 /lib
parent989ff1f731291e91113f166b5481c887b387e9b3 (diff)
downloadsimplesamlphp-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.php4
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);
}