Revision: 2018
Author: olavmrk
Date: Thu Dec  3 02:01:16 2009
Log: shib13: Change metadata output format to list of array assignments.
http://code.google.com/p/simplesamlphp/source/detail?r=2018

Modified:
  /trunk/www/shib13/idp/metadata.php
  /trunk/www/shib13/sp/metadata.php

=======================================
--- /trunk/www/shib13/idp/metadata.php  Wed Nov  4 05:52:19 2009
+++ /trunk/www/shib13/idp/metadata.php  Thu Dec  3 02:01:16 2009
@@ -51,7 +51,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);
=======================================
--- /trunk/www/shib13/sp/metadata.php   Wed Nov  4 05:52:19 2009
+++ /trunk/www/shib13/sp/metadata.php   Thu Dec  3 02:01:16 2009
@@ -50,7 +50,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.


Reply via email to