We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0edc3f5 commit ceae92dCopy full SHA for ceae92d
2 files changed
docs/simplesamlphp-changelog.md
@@ -8,6 +8,7 @@ See the upgrade notes for specific information about upgrading.
8
## Version 2.0.5
9
10
* Never expose the cron-API if secret is not properly configured (#1831)
11
+* Fixed a bug where IdP-initiated SLO using the HTTP-POST binding wasn't properly dealt with
12
13
## Version 2.0.4
14
modules/saml/src/Controller/SingleLogout.php
@@ -87,6 +87,10 @@ public function singleLogout(Request $request): Response
87
return $idp->doLogoutRedirect(
88
$httpUtils->checkURLAllowed($request->query->get('ReturnTo'))
89
);
90
+ } elseif ($request->request->has('ReturnTo')) {
91
+ return $idp->doLogoutRedirect(
92
+ $httpUtils->checkURLAllowed($request->request->get('ReturnTo'))
93
+ );
94
}
95
96
try {
0 commit comments