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

saml:NameIDAttribute: Update to use the new source for the NameID.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2679 44740490-163a-0410-bde0-09ae8108e29a
parent 7427d00f
No related branches found
No related tags found
No related merge requests found
...@@ -103,11 +103,11 @@ class sspmod_saml_Auth_Process_NameIDAttribute extends SimpleSAML_Auth_Processin ...@@ -103,11 +103,11 @@ class sspmod_saml_Auth_Process_NameIDAttribute extends SimpleSAML_Auth_Processin
assert('isset($state["Source"]["entityid"])'); assert('isset($state["Source"]["entityid"])');
assert('isset($state["Destination"]["entityid"])'); assert('isset($state["Destination"]["entityid"])');
if (!isset($state['saml:sp:State']['LogoutState']['saml:logout:NameID'])) { if (!isset($state['saml:sp:NameID'])) {
return; return;
} }
$rep = $state['saml:sp:State']['LogoutState']['saml:logout:NameID']; $rep = $state['saml:sp:NameID'];
assert('isset($rep["Value"])'); assert('isset($rep["Value"])');
$rep['%'] = '%'; $rep['%'] = '%';
......
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