Skip to content
Snippets Groups Projects
Commit 2b5a264d authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Add support for including organizationURL in aggregated metadata

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1645 44740490-163a-0410-bde0-09ae8108e29a
parent 9d8c4b44
No related branches found
No related tags found
No related merge requests found
...@@ -429,7 +429,9 @@ class SimpleSAML_Metadata_SAMLParser { ...@@ -429,7 +429,9 @@ class SimpleSAML_Metadata_SAMLParser {
if (!empty($this->organizationDisplayName)) { if (!empty($this->organizationDisplayName)) {
$ret['name'] = $this->organizationDisplayName; $ret['name'] = $this->organizationDisplayName;
} }
if (!empty($this->organizationURL)) {
$ret['url'] = $this->organizationURL;
}
if (!empty($this->tags)) { if (!empty($this->tags)) {
$ret['tags'] = $this->tags; $ret['tags'] = $this->tags;
......
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