Skip to content
Snippets Groups Projects
Commit b5e53b15 authored by Hans Zandbelt's avatar Hans Zandbelt
Browse files

add entityid to sp and idp metadata when calling process functions

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1534 44740490-163a-0410-bde0-09ae8108e29a
parent f9d5d67c
No related branches found
No related tags found
No related merge requests found
......@@ -207,9 +207,11 @@ if (!$session->isValid($authority) ) {
$idpap = $adfsconfig->getValue('authproc');
if ($idpap) $idpap = array('authproc' => $idpap); else $idpap = array();
$idpap['entityid'] = $idpentityid;
$spap = $spmetadata->getValue('authproc');
if ($spap) $spap = array('authproc' => $spap); else $spap = array();
$spap['entityid'] = $spentityid;
$pc = new SimpleSAML_Auth_ProcessingChain($idpap, $spap, 'idp');
......
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