Revision: 2039 Author: olavmrk Date: Fri Dec 4 03:16:56 2009 Log: metadata-converter: Change output format to list of array assignments.
Merged into 1.5 branch from r2017. http://code.google.com/p/simplesamlphp/source/detail?r=2039 Modified: /branches/simplesamlphp-1.5/www/admin/metadata-converter.php ======================================= --- /branches/simplesamlphp-1.5/www/admin/metadata-converter.php Thu Mar 12 01:10:04 2009 +++ /branches/simplesamlphp-1.5/www/admin/metadata-converter.php Fri Dec 4 03:16:56 2009 @@ -44,8 +44,8 @@ */ unset($entityMetadata['entityDescriptor']); - $text .= var_export($entityId, TRUE) . ' => ' . - var_export($entityMetadata, TRUE) . ",\n"; + $text .= '$metadata[' . var_export($entityId, TRUE) . '] = ' . + var_export($entityMetadata, TRUE) . ";\n"; } $entities = $text; -- 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.
