Revision: 2040 Author: olavmrk Date: Fri Dec 4 03:17:05 2009 Log: shib13: Change metadata output format to list of array assignments.
Merged into 1.5 branch from r2018. http://code.google.com/p/simplesamlphp/source/detail?r=2040 Modified: /branches/simplesamlphp-1.5/www/shib13/idp/metadata.php /branches/simplesamlphp-1.5/www/shib13/sp/metadata.php ======================================= --- /branches/simplesamlphp-1.5/www/shib13/idp/metadata.php Fri Aug 14 04:07:44 2009 +++ /branches/simplesamlphp-1.5/www/shib13/idp/metadata.php Fri Dec 4 03:17:05 2009 @@ -49,7 +49,7 @@ } - $metaflat = var_export($idpentityid, TRUE) . ' => ' . var_export($metaArray, TRUE) . ','; + $metaflat = '$metadata[' . var_export($idpentityid, TRUE) . '] = ' . var_export($metaArray, TRUE) . ';'; $metaArray['certData'] = $certInfo['certData']; $metaBuilder = new SimpleSAML_Metadata_SAMLBuilder($idpentityid); ======================================= --- /branches/simplesamlphp-1.5/www/shib13/sp/metadata.php Tue Oct 20 02:14:40 2009 +++ /branches/simplesamlphp-1.5/www/shib13/sp/metadata.php Fri Dec 4 03:17:05 2009 @@ -48,7 +48,7 @@ } - $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)) { $metaArray['certificate'] = $spmeta['certificate']; -- You received this message because you are subscribed to the Google Groups "simpleSAMLphp commits" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/simplesamlphp-commits?hl=en.
