Skip to content
Snippets Groups Projects
Commit f9dc49e3 authored by Olav Morken's avatar Olav Morken
Browse files

SAML2:SSOService - don't include the original RelayState in the RelayState to...

SAML2:SSOService - don't include the original RelayState in the RelayState to the login page since it isn't used in any case.


git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@114 44740490-163a-0410-bde0-09ae8108e29a
parent c61eaab8
No related branches found
No related tags found
No related merge requests found
......@@ -103,8 +103,8 @@ if (isset($_GET['SAMLRequest'])) {
if (!$session->isAuthenticated() ) {
$relaystate = SimpleSAML_Utilities::selfURLNoQuery() . '?RelayState=' . urlencode($_GET['RelayState']) .
'&RequestID=' . urlencode($requestid);
$relaystate = SimpleSAML_Utilities::selfURLNoQuery() .
'?RequestID=' . urlencode($requestid);
$authurl = SimpleSAML_Utilities::addURLparameter('/' . $config->getValue('baseurlpath') . $idpmeta['auth'],
'RelayState=' . urlencode($relaystate));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment