Revision: 2160
Author: olavmrk
Date: Mon Feb 8 01:12:42 2010
Log: saml2/shib13: Fix bug where name & url wasn\'t added to metadata in
old SP code.
http://code.google.com/p/simplesamlphp/source/detail?r=2160
Modified:
/trunk/www/saml2/sp/metadata.php
/trunk/www/shib13/sp/metadata.php
=======================================
--- /trunk/www/saml2/sp/metadata.php Mon Nov 23 05:58:56 2009
+++ /trunk/www/saml2/sp/metadata.php Mon Feb 8 01:12:42 2010
@@ -53,6 +53,7 @@
$metaBuilder = new SimpleSAML_Metadata_SAMLBuilder($spentityid);
$metaBuilder->addMetadataSP20($metaArray);
+ $metaBuilder->addOrganizationInfo($metaArray);
$metaBuilder->addContact('technical', array(
'emailAddress' => $config->getString('technicalcontact_email',
NULL),
'name' => $config->getString('technicalcontact_name', NULL),
=======================================
--- /trunk/www/shib13/sp/metadata.php Thu Dec 3 02:01:16 2009
+++ /trunk/www/shib13/sp/metadata.php Mon Feb 8 01:12:42 2010
@@ -57,6 +57,7 @@
}
$metaBuilder = new SimpleSAML_Metadata_SAMLBuilder($spentityid);
$metaBuilder->addMetadataSP11($metaArray);
+ $metaBuilder->addOrganizationInfo($metaArray);
$metaBuilder->addContact('technical', array(
'emailAddress' => $config->getString('technicalcontact_email',
NULL),
'name' => $config->getString('technicalcontact_name', NULL),
--
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.