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

shib13: Change metadata output format to list of array assignments.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2018 44740490-163a-0410-bde0-09ae8108e29a
parent cb195ce5
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ try { ...@@ -51,7 +51,7 @@ try {
} }
$metaflat = var_export($idpentityid, TRUE) . ' => ' . var_export($metaArray, TRUE) . ','; $metaflat = '$metadata[' . var_export($idpentityid, TRUE) . '] = ' . var_export($metaArray, TRUE) . ';';
$metaArray['certData'] = $certInfo['certData']; $metaArray['certData'] = $certInfo['certData'];
$metaBuilder = new SimpleSAML_Metadata_SAMLBuilder($idpentityid); $metaBuilder = new SimpleSAML_Metadata_SAMLBuilder($idpentityid);
......
...@@ -50,7 +50,7 @@ try { ...@@ -50,7 +50,7 @@ try {
} }
$metaflat = var_export($spentityid, TRUE) . ' => ' . var_export($metaArray, TRUE) . ','; $metaflat = '$metadata[' . var_export($spentityid, TRUE) . '] = ' . var_export($metaArray, TRUE) . ';';
if (array_key_exists('certificate', $spmeta)) { if (array_key_exists('certificate', $spmeta)) {
$metaArray['certificate'] = $spmeta['certificate']; $metaArray['certificate'] = $spmeta['certificate'];
......
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