Skip to content
Snippets Groups Projects
Commit b0151c51 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Add support for including scopes in metadata for saml 2.0 idp

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1478 44740490-163a-0410-bde0-09ae8108e29a
parent 07fed5a0
No related branches found
No related tags found
No related merge requests found
...@@ -59,6 +59,9 @@ try { ...@@ -59,6 +59,9 @@ try {
if (array_key_exists('url', $idpmeta)) { if (array_key_exists('url', $idpmeta)) {
$metaArray['url'] = $idpmeta['url']; $metaArray['url'] = $idpmeta['url'];
} }
if (array_key_exists('scope', $idpmeta)) {
$metaArray['scope'] = $idpmeta['scope'];
}
$metaflat = var_export($idpentityid, TRUE) . ' => ' . var_export($metaArray, TRUE) . ','; $metaflat = var_export($idpentityid, TRUE) . ' => ' . var_export($metaArray, TRUE) . ',';
......
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