Revision: 2022
Author: olavmrk
Date: Thu Dec 3 05:50:46 2009
Log: saml2/idp: Fix backwards-compatibility with old authentication files.
http://code.google.com/p/simplesamlphp/source/detail?r=2022
Modified:
/trunk/www/saml2/idp/SingleLogoutService.php
=======================================
--- /trunk/www/saml2/idp/SingleLogoutService.php Thu Dec 3 05:46:28 2009
+++ /trunk/www/saml2/idp/SingleLogoutService.php Thu Dec 3 05:50:46 2009
@@ -201,6 +201,9 @@
SimpleSAML_Utilities::redirect('/' .
$config->getBaseURL() . 'saml2/sp/initSLO.php',
array('RelayState' => $returnTo)
);
+ } else {
+ /* A different old-style authentication file. */
+ $session->doLogout();
}
}
--
You received this message because you are subscribed to the Google Groups
"simpleSAMLphp commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/simplesamlphp-commits?hl=en.